Use SDL's getenv/putenv implementation, and populate at startup.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1577
This commit is contained in:
parent
bdeaec12d0
commit
a91a1c60f5
5 changed files with 56 additions and 33 deletions
|
|
@ -27,6 +27,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "SDL_getenv.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "pcsound.h"
|
#include "pcsound.h"
|
||||||
#include "pcsound_internal.h"
|
#include "pcsound_internal.h"
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,10 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32_WCE
|
||||||
|
#include "libc_wince.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "textscreen.h"
|
#include "textscreen.h"
|
||||||
|
|
||||||
|
|
@ -214,6 +218,15 @@ int main(int argc, char *argv[])
|
||||||
myargc = argc;
|
myargc = argc;
|
||||||
myargv = argv;
|
myargv = argv;
|
||||||
|
|
||||||
|
#ifdef _WIN32_WCE
|
||||||
|
|
||||||
|
// Windows CE has no environment, but SDL provides an implementation.
|
||||||
|
// Populate the environment with the values we normally find.
|
||||||
|
|
||||||
|
PopulateEnvironment();
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
InitConfig();
|
InitConfig();
|
||||||
RunGUI();
|
RunGUI();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -133,6 +133,15 @@ int main(int argc, char **argv)
|
||||||
myargc = argc;
|
myargc = argc;
|
||||||
myargv = argv;
|
myargv = argv;
|
||||||
|
|
||||||
|
#ifdef _WIN32_WCE
|
||||||
|
|
||||||
|
// Windows CE has no environment, but SDL provides an implementation.
|
||||||
|
// Populate the environment with the values we normally find.
|
||||||
|
|
||||||
|
PopulateEnvironment();
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
// Only schedule on a single core, if we have multiple
|
// Only schedule on a single core, if we have multiple
|
||||||
// cores. This is to work around a bug in SDL_mixer.
|
// cores. This is to work around a bug in SDL_mixer.
|
||||||
|
|
||||||
|
|
|
||||||
60
wince/env.c
60
wince/env.c
|
|
@ -14,21 +14,33 @@
|
||||||
|
|
||||||
#include "env.h"
|
#include "env.h"
|
||||||
|
|
||||||
static int buffers_loaded = 0;
|
|
||||||
static char username_buf[UNLEN + 1];
|
|
||||||
static char temp_buf[MAX_PATH + 1];
|
|
||||||
static char home_buf[MAX_PATH + 1];
|
|
||||||
|
|
||||||
static void WCharToChar(wchar_t *src, char *dest, int buf_len)
|
static void WCharToChar(wchar_t *src, char *dest, int buf_len)
|
||||||
{
|
{
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
|
|
||||||
len = wcslen(src);
|
len = wcslen(src) + 1;
|
||||||
|
|
||||||
WideCharToMultiByte(CP_OEMCP, 0, src, len, dest, buf_len, NULL, NULL);
|
WideCharToMultiByte(CP_OEMCP, 0, src, len, dest, buf_len, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void LoadBuffers(void)
|
static void SetEnvironment(char *env_string, wchar_t *wvalue)
|
||||||
|
{
|
||||||
|
char value[MAX_PATH + 10];
|
||||||
|
int env_len;
|
||||||
|
|
||||||
|
// Construct the string for putenv: NAME=value
|
||||||
|
|
||||||
|
env_len = strlen(env_string);
|
||||||
|
strcpy(value, env_string);
|
||||||
|
|
||||||
|
WCharToChar(wvalue, value + env_len, sizeof(value) - env_len);
|
||||||
|
|
||||||
|
// Set the environment variable:
|
||||||
|
|
||||||
|
putenv(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PopulateEnvironment(void)
|
||||||
{
|
{
|
||||||
wchar_t temp[MAX_PATH];
|
wchar_t temp[MAX_PATH];
|
||||||
DWORD buf_len;
|
DWORD buf_len;
|
||||||
|
|
@ -37,42 +49,26 @@ static void LoadBuffers(void)
|
||||||
|
|
||||||
buf_len = UNLEN;
|
buf_len = UNLEN;
|
||||||
GetUserNameExW(NameDisplay, temp, &buf_len);
|
GetUserNameExW(NameDisplay, temp, &buf_len);
|
||||||
WCharToChar(temp, temp_buf, MAX_PATH);
|
SetEnvironment("USER=", temp);
|
||||||
|
SetEnvironment("USERNAME=", temp);
|
||||||
|
|
||||||
// Temp dir:
|
// Temp dir:
|
||||||
|
|
||||||
GetTempPathW(MAX_PATH, temp);
|
GetTempPathW(MAX_PATH, temp);
|
||||||
WCharToChar(temp, temp_buf, MAX_PATH);
|
SetEnvironment("TEMP=", temp);
|
||||||
|
|
||||||
// Use My Documents dir as home:
|
// Use My Documents dir as home:
|
||||||
|
|
||||||
SHGetSpecialFolderPath(NULL, temp, CSIDL_PERSONAL, 0);
|
SHGetSpecialFolderPath(NULL, temp, CSIDL_PERSONAL, 0);
|
||||||
WCharToChar(temp, home_buf, MAX_PATH);
|
SetEnvironment("HOME=", temp);
|
||||||
}
|
|
||||||
|
|
||||||
char *getenv(const char *name)
|
|
||||||
{
|
|
||||||
if (!buffers_loaded)
|
|
||||||
{
|
{
|
||||||
LoadBuffers();
|
char *home = getenv("HOME");
|
||||||
buffers_loaded = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!strcmp(name, "USER") || !strcmp(name, "USERNAME"))
|
MultiByteToWideChar(CP_ACP, 0,
|
||||||
{
|
home, strlen(home) + 1,
|
||||||
return username_buf;
|
temp, sizeof(temp));
|
||||||
}
|
MessageBoxW(NULL, temp, L"Home", MB_OK);
|
||||||
else if (!strcmp(name, "TEMP"))
|
|
||||||
{
|
|
||||||
return temp_buf;
|
|
||||||
}
|
|
||||||
else if (!strcmp(name, "HOME"))
|
|
||||||
{
|
|
||||||
return home_buf;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,11 @@
|
||||||
#ifndef WINCE_ENV_H
|
#ifndef WINCE_ENV_H
|
||||||
#define WINCE_ENV_H
|
#define WINCE_ENV_H
|
||||||
|
|
||||||
extern char *getenv(const char *name);
|
// SDL provides an implementation of getenv/putenv:
|
||||||
|
|
||||||
|
#include "SDL_getenv.h"
|
||||||
|
|
||||||
|
extern void PopulateEnvironment(void);
|
||||||
|
|
||||||
#endif /* #ifndef WINCE_ENV_H */
|
#endif /* #ifndef WINCE_ENV_H */
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue