1
0
mirror of https://github.com/TASVideos/desmume synced 2024-07-01 07:14:37 +00:00

Compare commits

...

5 Commits

Author SHA1 Message Date
windwakr
0f6f54b151
Merge be53737eba into 90d0abdae0 2024-06-04 14:16:37 +02:00
zeromus
90d0abdae0
Merge pull request #792 from atsampson/xopen-strdup
libretro-common: fix implicit declarations
2024-05-13 07:59:48 -05:00
Adam Sampson
738298a9e8 libretro-common: fix implicit declarations
strdup and realpath are only declared by glibc's headers if
_XOPEN_SOURCE >= 500.
2024-05-13 12:47:10 +01:00
zeromus
4a53a30b91 winport - fix bug where desmume would create working directory using some wrong locale encoding and produce a Pok魯n directory instead of using the Pokémon that was already there (fixes #791) 2024-05-12 21:33:49 -04:00
windwakr
be53737eba Slot2: more Sega Card Reader fixes 2023-10-11 15:58:16 -04:00
6 changed files with 53 additions and 11 deletions

View File

@ -20,9 +20,15 @@
#include <string.h>
#include "../slot2.h"
#include "../emufile.h"
u8 hcv1000_cnt;
char hcv1000_data[16];
static u8 hcv1000_cnt;
static u8 hcv1000_data[16] =
{ 0x5F, 0x5F, 0x5F, 0x5F,
0x5F, 0x5F, 0x5F, 0x5F,
0x5F, 0x5F, 0x5F, 0x5F,
0x5F, 0x5F, 0x5F, 0x5F
};
class Slot2_HCV1000 : public ISlot2Interface
{
@ -34,17 +40,15 @@ public:
return &info;
}
virtual bool init()
virtual void connect()
{
hcv1000_cnt = 0;
memset(hcv1000_data, 0x5F, 16);
return TRUE;
}
virtual void writeByte(u8 PROCNUM, u32 addr, u8 val)
{
if (addr == 0xA000000) { hcv1000_cnt = (val & 0x83); }
if (addr == 0xA000000)
hcv1000_cnt = (val & 0x83);
}
virtual u8 readByte(u8 PROCNUM, u32 addr)
@ -58,12 +62,15 @@ public:
}
//HCV_CNT
else if (addr == 0xA000000) { slot_byte = hcv1000_cnt; }
else if (addr == 0xA000000)
{
slot_byte = hcv1000_cnt;
}
//HCV_DATA
else if ((addr >= 0xA000010) && (addr <= 0xA00001F))
{
slot_byte = (u8)hcv1000_data[addr & 0xF];
slot_byte = hcv1000_data[addr & 0xF];
}
return slot_byte;
@ -71,6 +78,24 @@ public:
virtual u16 readWord(u8 PROCNUM, u32 addr) { return 0xFDFD; };
virtual u32 readLong(u8 PROCNUM, u32 addr) { return 0xFDFDFDFD; };
virtual void savestate(EMUFILE &os)
{
s32 version = 0;
os.write_32LE(version);
os.write_u8(hcv1000_cnt);
}
virtual void loadstate(EMUFILE &is)
{
s32 version = is.read_s32LE();
if (version >= 0)
{
is.read_u8(hcv1000_cnt);
}
}
};
ISlot2Interface* construct_Slot2_HCV1000() { return new Slot2_HCV1000(); }

View File

@ -87,7 +87,7 @@ void GetINIPath()
}
FCEUD_MakePathDirs(IniName);
wcscpy(IniNameW,mbstowcs(IniName).c_str()); //careful to use locale C-style mbstowcs to get IniName (which is with locale encoding) to unicode
wcscpy(IniNameW,mbstowcs_locale(IniName).c_str());
//write BOM to get unicode
FILE* test = fopen(IniName,"rb");

View File

@ -20,6 +20,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#define _XOPEN_SOURCE 500 /* For strdup, realpath */
#include <stdlib.h>
#include <boolean.h>
#include <string.h>

View File

@ -170,7 +170,7 @@ void createDirectoryRecursively(std::wstring path)
void FCEUD_MakePathDirs(const char *fname)
{
createDirectoryRecursively(mbstowcs(fname));
createDirectoryRecursively(mbstowcs_locale(fname));
}
#endif
//------------------------------

View File

@ -284,6 +284,19 @@ std::string mass_replace(const std::string &source, const std::string &victim, c
return answer;
}
std::wstring mbstowcs_locale(std::string str)
{
#ifdef HOST_WINDOWS
int plenty = str.size()*4+1;
wchar_t *wgarbage = new wchar_t[plenty];
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED, str.data(), -1, wgarbage, plenty);
std::wstring ret = wgarbage;
delete[] wgarbage;
return ret;
#endif
return mbstowcs(str);
}
//convert a std::string to std::wstring
std::wstring mbstowcs(std::string str)
{

View File

@ -107,5 +107,7 @@ std::string mass_replace(const std::string &source, const std::string &victim, c
std::wstring mbstowcs(std::string str);
std::string wcstombs(std::wstring str);
std::wstring mbstowcs_locale(std::string str);
#endif