This commit is contained in:
Nekotekina 2014-03-24 19:28:28 +04:00
commit 9b1c0c97d3
14 changed files with 32 additions and 31 deletions

View File

@ -13,7 +13,7 @@ rem // A copy of the GPL 2.0 should have been included with the program.
rem // If not, see http://www.gnu.org/licenses/ rem // If not, see http://www.gnu.org/licenses/
rem // Official git repository and contact information can be found at rem // Official git repository and contact information can be found at
rem // https://github.com/DHrpcs3/rpcs3 and http://code.google.com/p/rpcs3/. rem // https://github.com/DHrpcs3/rpcs3 and http://rpcs3.net/.
setlocal ENABLEDELAYEDEXPANSION setlocal ENABLEDELAYEDEXPANSION

View File

@ -24,10 +24,10 @@ struct Arg
ArgType type; ArgType type;
Arg(const wxString& _string, const u32 _value = 0, const ArgType _type = ARG_ERR) Arg(const wxString& _string, const u32 _value = 0, const ArgType _type = ARG_ERR)
: value(_value) : string(_string.ToStdString())
, value(_value)
, type(_type) , type(_type)
{ {
string = _string.ToStdString();
} }
}; };
@ -68,19 +68,19 @@ class CompilePPUProgram
s32 m_addr; s32 m_addr;
Branch(const wxString& name, s32 pos) Branch(const wxString& name, s32 pos)
: m_pos(pos) : m_name(name.ToStdString())
, m_pos(pos)
, m_id(-1) , m_id(-1)
, m_addr(-1) , m_addr(-1)
{ {
m_name = name.ToStdString();
} }
Branch(const wxString& name, u32 id, u32 addr) Branch(const wxString& name, u32 id, u32 addr)
: m_pos(-1) : m_name(name.ToStdString())
, m_pos(-1)
, m_id(id) , m_id(id)
, m_addr(addr) , m_addr(addr)
{ {
m_name = name.ToStdString();
} }
}; };
@ -105,9 +105,9 @@ class CompilePPUProgram
u32 m_addr; u32 m_addr;
SpData(const wxString& data, u32 addr) SpData(const wxString& data, u32 addr)
: m_addr(addr) : m_data(data.ToStdString())
, m_addr(addr)
{ {
m_data = data.ToStdString();
} }
}; };

View File

@ -401,7 +401,7 @@ struct PPCdouble
return (u64&)_double; return (u64&)_double;
} }
u32 GetZerosCount() u32 GetZerosCount() const
{ {
u32 ret; u32 ret;
u32 dd = frac >> 32; u32 dd = frac >> 32;

View File

@ -30,7 +30,7 @@ struct RSXVertexData
RSXVertexData(); RSXVertexData();
void Reset(); void Reset();
bool IsEnabled() { return size > 0; } bool IsEnabled() const { return size > 0; }
void Load(u32 start, u32 count); void Load(u32 start, u32 count);
u32 GetTypeSize(); u32 GetTypeSize();
@ -450,7 +450,6 @@ protected:
m_set_scissor_horizontal = false; m_set_scissor_horizontal = false;
m_set_scissor_vertical = false; m_set_scissor_vertical = false;
m_set_front_polygon_mode = false; m_set_front_polygon_mode = false;
m_clear_surface_mask = 0;
m_set_blend_sfactor = false; m_set_blend_sfactor = false;
m_set_blend_dfactor = false; m_set_blend_dfactor = false;
m_set_stencil_mask = false; m_set_stencil_mask = false;

View File

@ -235,7 +235,7 @@ public:
return 0; return 0;
} }
u64 GetSize() u64 GetSize() const
{ {
return m_info.size; return m_info.size;
} }

View File

@ -20,7 +20,7 @@ public:
CellKbData& GetData(const u32 keyboard) { return m_keyboard_handler->GetData(keyboard); } CellKbData& GetData(const u32 keyboard) { return m_keyboard_handler->GetData(keyboard); }
CellKbConfig& GetConfig(const u32 keyboard) { return m_keyboard_handler->GetConfig(keyboard); } CellKbConfig& GetConfig(const u32 keyboard) { return m_keyboard_handler->GetConfig(keyboard); }
bool IsInited() { return m_inited; } bool IsInited() const { return m_inited; }
//private: //private:
//DECLARE_EVENT_TABLE(); //DECLARE_EVENT_TABLE();

View File

@ -19,7 +19,7 @@ public:
CellMouseData& GetData(const u32 mouse) { return m_mouse_handler->GetData(mouse); } CellMouseData& GetData(const u32 mouse) { return m_mouse_handler->GetData(mouse); }
CellMouseRawData& GetRawData(const u32 mouse) { return m_mouse_handler->GetRawData(mouse); } CellMouseRawData& GetRawData(const u32 mouse) { return m_mouse_handler->GetRawData(mouse); }
bool IsInited() { return m_inited; } bool IsInited() const { return m_inited; }
//private: //private:
//DECLARE_EVENT_TABLE(); //DECLARE_EVENT_TABLE();

View File

@ -18,7 +18,7 @@ public:
PadInfo& GetInfo() { return m_pad_handler->GetInfo(); } PadInfo& GetInfo() { return m_pad_handler->GetInfo(); }
Array<Button>& GetButtons(const u32 pad) { return m_pad_handler->GetButtons(pad); } Array<Button>& GetButtons(const u32 pad) { return m_pad_handler->GetButtons(pad); }
bool IsInited() { return m_inited; } bool IsInited() const { return m_inited; }
//private: //private:
//DECLARE_EVENT_TABLE(); //DECLARE_EVENT_TABLE();

View File

@ -23,13 +23,13 @@ enum
enum enum
{ {
L10N_STR_UNKNOWN = (1 << 0), L10N_STR_UNKNOWN = (1 << 0),
L10N_STR_ASCII = (1 << 1), L10N_STR_ASCII = (1 << 1),
L10N_STR_JIS = (1 << 2), L10N_STR_JIS = (1 << 2),
L10N_STR_EUCJP = (1 << 3), L10N_STR_EUCJP = (1 << 3),
L10N_STR_SJIS = (1 << 4), L10N_STR_SJIS = (1 << 4),
L10N_STR_UTF8 = (1 << 5), L10N_STR_UTF8 = (1 << 5),
L10N_STR_ILLEGAL = (1 << 16), L10N_STR_ILLEGAL = (1 << 16),
L10N_STR_ERROR = (1 << 17), L10N_STR_ERROR = (1 << 17),
}; };
int UTF16stoUTF8s(mem16_ptr_t utf16, mem64_t utf16_len, mem8_ptr_t utf8, mem64_t utf8_len) int UTF16stoUTF8s(mem16_ptr_t utf16, mem64_t utf16_len, mem8_ptr_t utf8, mem64_t utf8_len)
@ -47,9 +47,11 @@ int UTF16stoUTF8s(mem16_ptr_t utf16, mem64_t utf16_len, mem8_ptr_t utf8, mem64_t
std::string str = convert.to_bytes(wstr); std::string str = convert.to_bytes(wstr);
if (!utf8.IsGood() || utf8_len.GetValue() < str.size()) if (!utf8.IsGood() || utf8_len.GetValue() < str.size())
{
utf8_len = str.size(); utf8_len = str.size();
return DSTExhausted; return DSTExhausted;
}
utf8_len = str.size(); utf8_len = str.size();
Memory.WriteString(utf8, str.c_str()); Memory.WriteString(utf8, str.c_str());
#endif #endif

View File

@ -198,7 +198,7 @@ int cellSpursGetInfo(mem_ptr_t<CellSpurs> spurs, mem_ptr_t<CellSpursInfo> info)
int cellSpursGetTasksetId(mem_ptr_t<CellSpursTaskset> taskset, mem32_t workloadId) int cellSpursGetTasksetId(mem_ptr_t<CellSpursTaskset> taskset, mem32_t workloadId)
{ {
cellSpurs.Error("cellSpursGetTasksetId(taskset_addr=0x%x, workloadId_addr=0x%x)", taskset.GetAddr(), workloadId.GetAddr()); cellSpurs.Error("cellSpursGetTasksetId(taskset_addr=0x%x, workloadId_addr=0x%x)", taskset.GetAddr(), workloadId.GetAddr());
if(!taskset.IsGood() || !taskset.IsGood()) return CELL_SPURS_TASK_ERROR_NULL_POINTER; if(!taskset.IsGood() || !workloadId.IsGood()) return CELL_SPURS_TASK_ERROR_NULL_POINTER;
return CELL_OK; return CELL_OK;
} }

View File

@ -61,7 +61,7 @@ int sceNpTrophyCreateContext(mem32_t context, mem_ptr_t<SceNpCommunicationId> co
if (!context.IsGood()) if (!context.IsGood())
return SCE_NP_TROPHY_ERROR_INVALID_ARGUMENT; return SCE_NP_TROPHY_ERROR_INVALID_ARGUMENT;
if (options & (~(u64)1)) if (options & (~(u64)1))
SCE_NP_TROPHY_ERROR_NOT_SUPPORTED; return SCE_NP_TROPHY_ERROR_NOT_SUPPORTED;
// TODO: There are other possible errors // TODO: There are other possible errors
// TODO: Is the TROPHY.TRP file necessarily located in this path? // TODO: Is the TROPHY.TRP file necessarily located in this path?

View File

@ -143,7 +143,7 @@ public:
return res; return res;
} }
u32 count() u32 count() const
{ {
return buf_count; return buf_count;
} }

View File

@ -27,7 +27,7 @@ struct Elf_Ehdr
bool CheckMagic() const { return e_magic == 0x7F454C46; } bool CheckMagic() const { return e_magic == 0x7F454C46; }
ElfClass GetClass() ElfClass GetClass() const
{ {
switch(e_class) switch(e_class)
{ {

View File

@ -193,11 +193,11 @@ protected:
public: public:
virtual bool LoadInfo() { return false; } virtual bool LoadInfo() { return false; }
virtual bool LoadData(u64 offset = 0) { return false; } virtual bool LoadData(u64 offset = 0) { return false; }
Elf_Machine GetMachine() { return machine; } Elf_Machine GetMachine() const { return machine; }
u32 GetEntry() { return entry; } u32 GetEntry() const { return entry; }
u32 GetMinAddr() { return min_addr; } u32 GetMinAddr() const { return min_addr; }
u32 GetMaxAddr() { return max_addr; } u32 GetMaxAddr() const { return max_addr; }
}; };
class Loader : public LoaderBase class Loader : public LoaderBase