OpenRCT2/src/platform/windows.c

720 lines
17 KiB
C
Raw Normal View History

2014-10-06 18:36:58 +02:00
/*****************************************************************************
* Copyright (c) 2014 Ted John
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* This file is part of OpenRCT2.
*
* OpenRCT2 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, either version 3 of the License, or
* (at your option) any later version.
* 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 for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#ifdef _WIN32
#include <shlobj.h>
2014-10-06 18:36:58 +02:00
#include <windows.h>
#include <SDL_syswm.h>
#include "../addresses.h"
#include "../cmdline.h"
#include "../openrct2.h"
#include "../localisation/language.h"
#include "../localisation/currency.h"
#include "../config.h"
2014-12-07 22:45:42 +01:00
#include "platform.h"
2015-02-19 20:48:48 +01:00
#include "winnls.h"
// The name of the mutex used to prevent multiple instances of the game from running
#define SINGLE_INSTANCE_MUTEX_NAME "RollerCoaster Tycoon 2_GSKMUTEX"
LPSTR *CommandLineToArgvA(LPSTR lpCmdLine, int *argc);
2014-10-06 18:36:58 +02:00
/**
* Windows entry point to OpenRCT2 without a console window.
*/
// int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
// {
// return 0;
// }
/**
* Windows entry point to OpenRCT2 with a console window using a traditional C main function.
*/
// int main(char *argv[], int argc)
// {
// return 0;
// }
/**
* Entry point for when the DLL is loaded. This will be removed when OpenRCT2 can be built as a stand alone application.
*/
BOOL APIENTRY DllMain(HANDLE hModule, DWORD dwReason, LPVOID lpReserved)
{
return TRUE;
}
/**
* The function that is called directly from the host application (rct2.exe)'s WinMain. This will be removed when OpenRCT2 can
* be built as a stand alone application.
*/
__declspec(dllexport) int StartOpenRCT(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
int argc, runGame;
char **argv;
RCT2_GLOBAL(RCT2_ADDRESS_HINSTANCE, HINSTANCE) = hInstance;
RCT2_GLOBAL(RCT2_ADDRESS_CMDLINE, LPSTR) = lpCmdLine;
// Get command line arguments in standard form
argv = CommandLineToArgvA(lpCmdLine, &argc);
runGame = cmdline_run(argv, argc);
GlobalFree(argv);
if (runGame)
openrct2_launch();
return gExitCode;
}
2014-10-06 18:36:58 +02:00
char platform_get_path_separator()
{
return '\\';
}
int platform_file_exists(const char *path)
{
return !(GetFileAttributes(path) == INVALID_FILE_ATTRIBUTES && GetLastError() == ERROR_FILE_NOT_FOUND);
}
2014-10-06 18:36:58 +02:00
int platform_directory_exists(const char *path)
{
DWORD dwAttrib = GetFileAttributes(path);
return dwAttrib != INVALID_FILE_ATTRIBUTES && (dwAttrib & FILE_ATTRIBUTE_DIRECTORY);
}
int platform_ensure_directory_exists(const char *path)
{
if (platform_directory_exists(path))
return 1;
return CreateDirectory(path, NULL);
}
int platform_lock_single_instance()
{
HANDLE mutex, status;
// Check if operating system mutex exists
mutex = OpenMutex(MUTEX_ALL_ACCESS, FALSE, SINGLE_INSTANCE_MUTEX_NAME);
if (mutex == NULL) {
// Create new mutex
status = CreateMutex(NULL, FALSE, SINGLE_INSTANCE_MUTEX_NAME);
if (status == NULL)
fprintf(stderr, "unable to create mutex\n");
return 1;
} else {
// Already running
CloseHandle(mutex);
return 0;
}
}
typedef struct {
char active;
char pattern[MAX_PATH];
HANDLE handle;
WIN32_FIND_DATAA data;
} enumerate_file_info;
static enumerate_file_info _enumerateFileInfoList[8] = { 0 };
int platform_enumerate_files_begin(const char *pattern)
{
int i;
enumerate_file_info *enumFileInfo;
for (i = 0; i < countof(_enumerateFileInfoList); i++) {
enumFileInfo = &_enumerateFileInfoList[i];
if (!enumFileInfo->active) {
strncpy(enumFileInfo->pattern, pattern, MAX_PATH);
enumFileInfo->handle = NULL;
enumFileInfo->active = 1;
return i;
}
}
2014-12-07 22:45:42 +01:00
return INVALID_HANDLE;
}
2014-12-07 22:45:42 +01:00
int platform_enumerate_files_next(int handle, file_info *outFileInfo)
{
int result;
enumerate_file_info *enumFileInfo;
HANDLE findFileHandle;
enumFileInfo = &_enumerateFileInfoList[handle];
if (enumFileInfo->handle == NULL) {
findFileHandle = FindFirstFile(enumFileInfo->pattern, &enumFileInfo->data);
if (findFileHandle != INVALID_HANDLE_VALUE) {
enumFileInfo->handle = findFileHandle;
result = 1;
} else {
result = 0;
}
} else {
result = FindNextFile(enumFileInfo->handle, &enumFileInfo->data);
}
if (result) {
2014-12-07 22:45:42 +01:00
outFileInfo->path = enumFileInfo->data.cFileName;
outFileInfo->size = ((uint64)enumFileInfo->data.nFileSizeHigh << 32ULL) | (uint64)enumFileInfo->data.nFileSizeLow;
outFileInfo->last_modified = ((uint64)enumFileInfo->data.ftLastWriteTime.dwHighDateTime << 32ULL) | (uint64)enumFileInfo->data.ftLastWriteTime.dwLowDateTime;
return 1;
} else {
return 0;
}
}
void platform_enumerate_files_end(int handle)
{
enumerate_file_info *enumFileInfo;
enumFileInfo = &_enumerateFileInfoList[handle];
if (enumFileInfo->handle != NULL) {
FindClose(enumFileInfo->handle);
enumFileInfo->handle = NULL;
}
enumFileInfo->active = 0;
}
int platform_enumerate_directories_begin(const char *directory)
{
int i;
enumerate_file_info *enumFileInfo;
if (strlen(directory) + 3 >= MAX_PATH)
return INVALID_HANDLE;
for (i = 0; i < countof(_enumerateFileInfoList); i++) {
enumFileInfo = &_enumerateFileInfoList[i];
if (!enumFileInfo->active) {
strncpy(enumFileInfo->pattern, directory, MAX_PATH);
strncat(enumFileInfo->pattern, "*", MAX_PATH);
enumFileInfo->handle = NULL;
enumFileInfo->active = 1;
return i;
}
}
return INVALID_HANDLE;
}
int platform_enumerate_directories_next(int handle, char *path)
{
enumerate_file_info *enumFileInfo;
HANDLE fileHandle;
enumFileInfo = &_enumerateFileInfoList[handle];
if (enumFileInfo->handle == NULL) {
fileHandle = FindFirstFile(enumFileInfo->pattern, &enumFileInfo->data);
if (fileHandle != 0) {
enumFileInfo->handle = fileHandle;
} else {
return 0;
}
} else {
2015-02-15 15:20:19 +01:00
if (!FindNextFile(enumFileInfo->handle, &enumFileInfo->data)) {
return 0;
}
}
while (
(enumFileInfo->data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0
|| strchr(enumFileInfo->data.cFileName, '.') != NULL
) {
2015-02-15 15:20:19 +01:00
if (!FindNextFile(enumFileInfo->handle, &enumFileInfo->data)) {
return 0;
}
}
memset(path, '\0', MAX_PATH);
2015-02-15 15:20:19 +01:00
strncpy(path, enumFileInfo->data.cFileName, MAX_PATH);
strncat(path, "\\", MAX_PATH);
return 1;
}
void platform_enumerate_directories_end(int handle)
{
enumerate_file_info *enumFileInfo;
enumFileInfo = &_enumerateFileInfoList[handle];
if (enumFileInfo->handle != NULL) {
FindClose(enumFileInfo->handle);
enumFileInfo->handle = NULL;
}
enumFileInfo->active = 0;
}
int platform_file_copy(const char *srcPath, const char *dstPath)
{
return CopyFileA(srcPath, dstPath, TRUE);
}
int platform_file_move(const char *srcPath, const char *dstPath)
{
return MoveFileA(srcPath, dstPath);
}
int platform_file_delete(const char *path)
{
return DeleteFileA(path);
}
void platform_hide_cursor()
{
ShowCursor(FALSE);
}
void platform_show_cursor()
{
ShowCursor(TRUE);
}
void platform_get_cursor_position(int *x, int *y)
{
POINT point;
if (GetCursorPos(&point)) {
*x = point.x;
*y = point.y;
} else {
*x = INT32_MIN;
*y = INT32_MIN;
}
}
void platform_set_cursor_position(int x, int y)
{
SetCursorPos(x, y);
}
2014-11-30 21:26:53 +01:00
unsigned int platform_get_ticks()
{
return GetTickCount();
}
void platform_get_user_directory(char *outPath, const char *subDirectory)
{
char seperator[2] = { platform_get_path_separator(), 0 };
if (SUCCEEDED(SHGetFolderPathA(NULL, CSIDL_PERSONAL | CSIDL_FLAG_CREATE, NULL, 0, outPath))) {
strcat(outPath, seperator);
strcat(outPath, "OpenRCT2");
strcat(outPath, seperator);
if (subDirectory != NULL && subDirectory[0] != 0) {
strcat(outPath, subDirectory);
strcat(outPath, seperator);
}
} else {
outPath[0] = 0;
}
}
void platform_show_messagebox(char *message)
{
MessageBoxA(windows_get_window_handle(), message, "OpenRCT2", MB_OK);
}
/**
*
* rct2: 0x004080EA
*/
int platform_open_common_file_dialog(int type, char *title, char *filename, char *filterPattern, char *filterName)
{
char initialDirectory[MAX_PATH], *dotAddress, *slashAddress;
OPENFILENAME openFileName;
BOOL result;
int tmp;
DWORD commonFlags;
// Get directory path from given filename
strcpy(initialDirectory, filename);
dotAddress = strrchr(initialDirectory, '.');
if (dotAddress != NULL) {
slashAddress = strrchr(initialDirectory, '\\');
if (slashAddress < dotAddress)
*(slashAddress + 1) = 0;
}
// Clear filename
if (type != 0)
*filename = 0;
// Set open file name options
memset(&openFileName, 0, sizeof(OPENFILENAME));
openFileName.lStructSize = sizeof(OPENFILENAME);
openFileName.hwndOwner = windows_get_window_handle();
openFileName.lpstrFile = filename;
openFileName.nMaxFile = MAX_PATH;
openFileName.lpstrInitialDir = initialDirectory;
openFileName.lpstrTitle = title;
// Copy filter name
strcpy((char*)0x01423800, filterName);
// Copy filter pattern
strcpy((char*)0x01423800 + strlen(filterName) + 1, filterPattern);
*((char*)(0x01423800 + strlen(filterName) + 1 + strlen(filterPattern) + 1)) = 0;
openFileName.lpstrFilter = (char*)0x01423800;
//
tmp = RCT2_GLOBAL(0x009E2C74, uint32);
if (RCT2_GLOBAL(0x009E2BB8, uint32) == 2 && RCT2_GLOBAL(0x009E1AF8, uint32) == 1)
RCT2_GLOBAL(0x009E2C74, uint32) = 1;
// Open dialog
commonFlags = OFN_EXPLORER | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY | OFN_NOCHANGEDIR;
if (type == 0) {
openFileName.Flags = commonFlags | OFN_CREATEPROMPT | OFN_OVERWRITEPROMPT;
result = GetSaveFileName(&openFileName);
} else if (type == 1) {
openFileName.Flags = commonFlags | OFN_NONETWORKBUTTON | OFN_FILEMUSTEXIST;
result = GetOpenFileName(&openFileName);
}
//
RCT2_GLOBAL(0x009E2C74, uint32) = tmp;
return result;
}
char *platform_open_directory_browser(char *title)
{
BROWSEINFO bi;
char pszBuffer[MAX_PATH];
LPITEMIDLIST pidl;
LPMALLOC lpMalloc;
// Initialize COM
if (FAILED(CoInitializeEx(0, COINIT_APARTMENTTHREADED))) {
CoUninitialize();
log_error("Error opening directory browse window");
return 0;
}
// Get a pointer to the shell memory allocator
if (FAILED(SHGetMalloc(&lpMalloc))) {
CoUninitialize();
log_error("Error opening directory browse window");
return 0;
}
bi.hwndOwner = NULL;
bi.pidlRoot = NULL;
bi.pszDisplayName = pszBuffer;
bi.lpszTitle = title;
bi.ulFlags = BIF_RETURNFSANCESTORS | BIF_RETURNONLYFSDIRS;
bi.lpfn = NULL;
bi.lParam = 0;
char *outPath = NULL;
if (pidl = SHBrowseForFolder(&bi)) {
// Copy the path directory to the buffer
if (SHGetPathFromIDList(pidl, pszBuffer)) {
// Store pszBuffer (and the path) in the outPath
outPath = (char*) malloc(strlen(pszBuffer)+1);
strcpy(outPath, pszBuffer);
}
}
CoUninitialize();
return outPath;
}
/**
*
* rct2: 0x00407978
*/
int windows_get_registry_install_info(rct2_install_info *installInfo, char *source, char *font, uint8 charset)
{
char subkeyInfogrames[MAX_PATH], subkeyFishTechGroup[MAX_PATH], keyName[100];
LOGFONTA lf;
HKEY hKey;
DWORD type, size;
strcpy(subkeyInfogrames, "Software\\Infogrames\\");
strcat(subkeyInfogrames, source);
strcpy(subkeyFishTechGroup, "Software\\Fish Technology Group\\");
strcat(subkeyFishTechGroup, source);
memset(&lf, 0, sizeof(lf));
lf.lfCharSet = charset;
lf.lfHeight = 12;
lf.lfWeight = 400;
strcpy(lf.lfFaceName, font);
RCT2_GLOBAL(RCT2_ADDRESS_HFONT, HFONT) = CreateFontIndirectA(&lf);
if (RegOpenKeyA(HKEY_LOCAL_MACHINE, subkeyInfogrames, &hKey) != ERROR_SUCCESS)
return 0;
if (RegOpenKeyA(HKEY_LOCAL_MACHINE, subkeyFishTechGroup, &hKey) != ERROR_SUCCESS)
return 0;
size = 260;
RegQueryValueExA(hKey, "Title", 0, &type, installInfo->title, &size);
size = 260;
RegQueryValueExA(hKey, "Path", 0, &type, installInfo->path, &size);
installInfo->var_20C = 235960;
size = 4;
RegQueryValueExA(hKey, "InstallLevel", 0, &type, (LPBYTE)&installInfo->installLevel, &size);
for (int i = 0; i <= 15; i++) {
sprintf(keyName, "AddonPack%d", i);
size = sizeof(installInfo->expansionPackNames[i]);
if (RegQueryValueExA(hKey, keyName, 0, &type, installInfo->expansionPackNames[i], &size) == ERROR_SUCCESS)
installInfo->activeExpansionPacks |= (1 << i);
}
RegCloseKey(hKey);
return 1;
}
HWND windows_get_window_handle()
{
SDL_SysWMinfo wmInfo;
if (gWindow == NULL)
return NULL;
SDL_VERSION(&wmInfo.version);
if (SDL_GetWindowWMInfo(gWindow, &wmInfo) != SDL_TRUE) {
log_error("SDL_GetWindowWMInfo failed %s", SDL_GetError());
exit(-1);
}
return wmInfo.info.win.window;
}
/**
* http://alter.org.ua/en/docs/win/args/
*/
PCHAR *CommandLineToArgvA(PCHAR CmdLine, int *_argc)
{
PCHAR* argv;
PCHAR _argv;
ULONG len;
ULONG argc;
CHAR a;
ULONG i, j;
BOOLEAN in_QM;
BOOLEAN in_TEXT;
BOOLEAN in_SPACE;
len = strlen(CmdLine);
i = ((len + 2) / 2)*sizeof(PVOID) + sizeof(PVOID);
argv = (PCHAR*)GlobalAlloc(GMEM_FIXED,
i + (len + 2)*sizeof(CHAR) + 1);
_argv = (PCHAR)(((PUCHAR)argv) + i);
// Add in virtual 1st command line argument, process path, for arg_parse's sake.
argv[0] = 0;
argc = 1;
argv[argc] = _argv;
in_QM = FALSE;
in_TEXT = FALSE;
in_SPACE = TRUE;
i = 0;
j = 0;
while (a = CmdLine[i]) {
if (in_QM) {
if (a == '\"') {
in_QM = FALSE;
} else {
_argv[j] = a;
j++;
}
} else {
switch (a) {
case '\"':
in_QM = TRUE;
in_TEXT = TRUE;
if (in_SPACE) {
argv[argc] = _argv + j;
argc++;
}
in_SPACE = FALSE;
break;
case ' ':
case '\t':
case '\n':
case '\r':
if (in_TEXT) {
_argv[j] = '\0';
j++;
}
in_TEXT = FALSE;
in_SPACE = TRUE;
break;
default:
in_TEXT = TRUE;
if (in_SPACE) {
argv[argc] = _argv + j;
argc++;
}
_argv[j] = a;
j++;
in_SPACE = FALSE;
break;
}
}
i++;
}
_argv[j] = '\0';
argv[argc] = NULL;
(*_argc) = argc;
return argv;
}
#endif
uint16 platform_get_locale_language(){
WCHAR langCode[4];
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT,
LOCALE_SABBREVLANGNAME,
langCode,
sizeof(langCode) / sizeof(WCHAR)) == 0){
return LANGUAGE_UNDEFINED;
}
if (wcscmp(langCode, L"ENG") == 0){
return LANGUAGE_ENGLISH_UK;
}
else if (wcscmp(langCode, L"ENU") == 0){
return LANGUAGE_ENGLISH_US;
}
else if (wcscmp(langCode, L"DEU") == 0){
return LANGUAGE_GERMAN;
}
else if (wcscmp(langCode, L"NLD") == 0){
return LANGUAGE_DUTCH;
}
else if (wcscmp(langCode, L"FRA") == 0){
return LANGUAGE_FRENCH;
}
else if (wcscmp(langCode, L"HUN") == 0){
return LANGUAGE_HUNGARIAN;
}
else if (wcscmp(langCode, L"PLK") == 0){
return LANGUAGE_POLISH;
}
else if (wcscmp(langCode, L"ESP") == 0){
return LANGUAGE_SPANISH;
}
else if (wcscmp(langCode, L"SVE") == 0){
return LANGUAGE_SWEDISH;
}
return LANGUAGE_UNDEFINED;
}
uint8 platform_get_locale_currency(){
WCHAR currCode[4];
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT,
LOCALE_SINTLSYMBOL,
currCode,
sizeof(currCode) / sizeof(WCHAR)) == 0){
return CURRENCY_POUNDS;
}
if (wcscmp(currCode, L"GBP") == 0){
return CURRENCY_POUNDS;
}
else if (wcscmp(currCode, L"USD") == 0){
return CURRENCY_DOLLARS;
}
else if (wcscmp(currCode, L"EUR") == 0){
return CURRENCY_EUROS;
}
else if (wcscmp(currCode, L"SEK") == 0){
return CURRENCY_KRONA;
}
else if (wcscmp(currCode, L"SEK") == 0){
return CURRENCY_KRONA;
}
else if (wcscmp(currCode, L"ITL") == 0){
return CURRENCY_LIRA;
}
else if (wcscmp(currCode, L"JPY") == 0){
return CURRENCY_YEN;
}
else if (wcscmp(currCode, L"ESP") == 0){
return CURRENCY_PESETA;
}
else if (wcscmp(currCode, L"FRF") == 0){
return CURRENCY_FRANC;
}
else if (wcscmp(currCode, L"NLG") == 0){
return CURRENCY_GUILDERS;
}
return CURRENCY_POUNDS;
}
uint8 platform_get_locale_measurement_format(){
UINT measurement_system;
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT,
LOCALE_IMEASURE | LOCALE_RETURN_NUMBER,
(LPWSTR)&measurement_system,
sizeof(measurement_system)) == 0){
return MEASUREMENT_FORMAT_IMPERIAL;
}
switch (measurement_system){
case 0:
return MEASUREMENT_FORMAT_METRIC;
case 1:
return MEASUREMENT_FORMAT_IMPERIAL;
default:
return MEASUREMENT_FORMAT_IMPERIAL;
}
}
uint8 platform_get_locale_temperature_format(){
// There does not seem to be a function to obtain this, just check the countries
// According
UINT country;
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT,
LOCALE_IMEASURE | LOCALE_RETURN_NUMBER,
(LPWSTR)&country,
sizeof(country)) == 0){
return TEMPERATURE_FORMAT_C;
}
switch (country){
case CTRY_UNITED_STATES:
//USA
return TEMPERATURE_FORMAT_F;
case CTRY_BELIZE:
// Belize
return TEMPERATURE_FORMAT_F;
default:
return TEMPERATURE_FORMAT_C;
}
}