Add PSPNetconfDialog.

This commit is contained in:
shenweip 2013-10-13 10:26:51 +08:00
parent f86e478d9f
commit 1ff4b9c8ce
4 changed files with 117 additions and 0 deletions

View File

@ -175,6 +175,7 @@
<ClCompile Include="Dialog\PSPGamedataInstallDialog.cpp" />
<ClCompile Include="Dialog\PSPDialog.cpp" />
<ClCompile Include="Dialog\PSPMsgDialog.cpp" />
<ClCompile Include="Dialog\PSPNetconfDialog.cpp" />
<ClCompile Include="Dialog\PSPOskDialog.cpp" />
<ClCompile Include="Dialog\PSPPlaceholderDialog.cpp" />
<ClCompile Include="Dialog\PSPSaveDialog.cpp" />
@ -413,6 +414,7 @@
<ClInclude Include="Dialog\PSPGamedataInstallDialog.h" />
<ClInclude Include="Dialog\PSPDialog.h" />
<ClInclude Include="Dialog\PSPMsgDialog.h" />
<ClInclude Include="Dialog\PSPNetconfDialog.h" />
<ClInclude Include="Dialog\PSPOskDialog.h" />
<ClInclude Include="Dialog\PSPPlaceholderDialog.h" />
<ClInclude Include="Dialog\PSPSaveDialog.h" />

View File

@ -496,6 +496,9 @@
<ClCompile Include="Dialog\PSPGamedataInstallDialog.cpp">
<Filter>Dialog</Filter>
</ClCompile>
<ClCompile Include="Dialog\PSPNetconfDialog.cpp">
<Filter>Dialog</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="ELF\ElfReader.h">
@ -912,6 +915,9 @@
<ClInclude Include="Dialog\PSPGamedataInstallDialog.h">
<Filter>Dialog</Filter>
</ClInclude>
<ClInclude Include="Dialog\PSPNetconfDialog.h">
<Filter>Dialog</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="CMakeLists.txt" />

View File

@ -0,0 +1,60 @@
// Copyright (c) 2012- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "PSPNetconfDialog.h"
#include "ChunkFile.h"
#include "../Core/MemMap.h"
PSPNetconfDialog::PSPNetconfDialog() {
}
PSPNetconfDialog::~PSPNetconfDialog() {
}
int PSPNetconfDialog::Init(u32 paramAddr) {
// Already running
if (status != SCE_UTILITY_STATUS_NONE && status != SCE_UTILITY_STATUS_SHUTDOWN)
return SCE_ERROR_UTILITY_INVALID_STATUS;
int size = Memory::Read_U32(paramAddr);
memset(&request, 0, sizeof(request));
// Only copy the right size to support different request format
Memory::Memcpy(&request, paramAddr, size);
status = SCE_UTILITY_STATUS_INITIALIZE;
return 0;
}
int PSPNetconfDialog::Update() {
return 0;
}
int PSPNetconfDialog::Shutdown(bool force) {
if (status != SCE_UTILITY_STATUS_FINISHED && !force)
return SCE_ERROR_UTILITY_INVALID_STATUS;
return PSPDialog::Shutdown();
}
void PSPNetconfDialog::DoState(PointerWrap &p) {
auto s = p.Section("PSPNetconfigDialog", 0, 1);
if (!s)
return;
PSPDialog::DoState(p);
p.Do(request);
}

View File

@ -0,0 +1,49 @@
// Copyright (c) 2012- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "Core/Dialog/PSPDialog.h"
#include "Core/System.h"
struct SceUtilityNetconfData {
char groupName[8];
int timeout;
};
struct SceUtilityNetconfParam {
pspUtilityDialogCommon common;
int netAction;
PSPPointer<SceUtilityNetconfData> NetconfData;
int netHotspot;
int netHotspotConnected;
int netWifiSpot;
};
class PSPNetconfDialog: public PSPDialog {
public:
PSPNetconfDialog();
virtual ~PSPNetconfDialog();
virtual int Init(u32 paramAddr);
virtual int Update();
virtual int Shutdown(bool force = false);
virtual void DoState(PointerWrap &p);
private:
SceUtilityNetconfParam request;
};