mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
By default it will use binreloc to figure out where it's running, as with other directories.
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
// Cyphesis Online RPG Server and AI Engine
|
|
// Copyright (C) 2010 Alistair Riddoch
|
|
//
|
|
// 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; either version 2 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, write to the Free Software Foundation,
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "binreloc.h"
|
|
#include "compose.hpp"
|
|
#include "globals.h"
|
|
#include "log.h"
|
|
#include "system.h"
|
|
|
|
#ifdef _WIN32
|
|
#undef DATADIR
|
|
#endif // _WIN32
|
|
|
|
#include <cassert>
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
|
#include <windows.h>
|
|
#endif // HAVE_WINDOWS_H
|
|
|
|
static const bool debug_flag = false;
|
|
|
|
void getinstallprefix()
|
|
{
|
|
#ifdef HAVE_WINDOWS_H
|
|
HKEY hKey;
|
|
|
|
long res = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
|
|
"Software\\WorldForge\\Cyphesis\\Settings",
|
|
0, KEY_READ, &hKey);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
{
|
|
log(CYLOG_ERROR, "No install key for cyphesis");
|
|
return;
|
|
}
|
|
|
|
unsigned long type=REG_SZ, size=1024;
|
|
char path[1024]="";
|
|
|
|
res = RegQueryValueEx(hKey, "Path", NULL, &type, (LPBYTE)&path[0], &size);
|
|
|
|
if (res != ERROR_SUCCESS)
|
|
{
|
|
log(CYLOG_ERROR, "No install key for cyphesis");
|
|
} else {
|
|
etc_directory = String::compose("%1/etc", path);
|
|
var_directory = String::compose("%1/var", path);
|
|
share_directory = String::compose("%1/share", path);
|
|
}
|
|
|
|
RegCloseKey(hKey);
|
|
#else // HAVE_WINDOWS_H
|
|
BrInitError error;
|
|
if (br_init (&error) == 0) {
|
|
return;
|
|
}
|
|
|
|
etc_directory = br_find_etc_dir("");
|
|
share_directory = br_find_data_dir("data");
|
|
var_directory = String::compose("%1/var", br_find_prefix(""));
|
|
bin_directory = br_find_bin_dir("bin");
|
|
#endif // HAVE_WINDOWS_H
|
|
}
|