| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /*
- ** Command & Conquer Generals(tm)
- ** Copyright 2025 Electronic Arts Inc.
- **
- ** 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 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/>.
- */
- ////////////////////////////////////////////////////////////////////////////////
- // //
- // (c) 2001-2003 Electronic Arts Inc. //
- // //
- ////////////////////////////////////////////////////////////////////////////////
- // Registry.cpp
- // Simple interface for storing/retreiving registry values
- // Author: Matthew D. Campbell, December 2001
- #include "PreRTS.h" // This must go first in EVERY cpp file int the GameEngine
- #include "Common/Registry.h"
- #ifdef _INTERNAL
- // for occasional debugging...
- //#pragma optimize("", off)
- //#pragma MESSAGE("************************************** WARNING, optimization disabled for debugging purposes")
- #endif
- Bool getStringFromRegistry(HKEY root, AsciiString path, AsciiString key, AsciiString& val)
- {
- HKEY handle;
- unsigned char buffer[256];
- unsigned long size = 256;
- unsigned long type;
- int returnValue;
- if ((returnValue = RegOpenKeyEx( root, path.str(), 0, KEY_READ, &handle )) == ERROR_SUCCESS)
- {
- returnValue = RegQueryValueEx(handle, key.str(), NULL, &type, (unsigned char *) &buffer, &size);
- RegCloseKey( handle );
- }
- if (returnValue == ERROR_SUCCESS)
- {
- val = (char *)buffer;
- return TRUE;
- }
- return FALSE;
- }
- Bool getUnsignedIntFromRegistry(HKEY root, AsciiString path, AsciiString key, UnsignedInt& val)
- {
- HKEY handle;
- unsigned char buffer[4];
- unsigned long size = 4;
- unsigned long type;
- int returnValue;
- if ((returnValue = RegOpenKeyEx( root, path.str(), 0, KEY_READ, &handle )) == ERROR_SUCCESS)
- {
- returnValue = RegQueryValueEx(handle, key.str(), NULL, &type, (unsigned char *) &buffer, &size);
- RegCloseKey( handle );
- }
- if (returnValue == ERROR_SUCCESS)
- {
- val = *(UnsignedInt *)buffer;
- return TRUE;
- }
- return FALSE;
- }
- Bool setStringInRegistry( HKEY root, AsciiString path, AsciiString key, AsciiString val)
- {
- HKEY handle;
- unsigned long type;
- unsigned long returnValue;
- int size;
- if ((returnValue = RegCreateKeyEx( root, path.str(), 0, "REG_NONE", REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &handle, NULL )) == ERROR_SUCCESS)
- {
- type = REG_SZ;
- size = val.getLength()+1;
- returnValue = RegSetValueEx(handle, key.str(), 0, type, (unsigned char *)val.str(), size);
- RegCloseKey( handle );
- }
- return (returnValue == ERROR_SUCCESS);
- }
- Bool setUnsignedIntInRegistry( HKEY root, AsciiString path, AsciiString key, UnsignedInt val)
- {
- HKEY handle;
- unsigned long type;
- unsigned long returnValue;
- int size;
- if ((returnValue = RegCreateKeyEx( root, path.str(), 0, "REG_NONE", REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &handle, NULL )) == ERROR_SUCCESS)
- {
- type = REG_DWORD;
- size = 4;
- returnValue = RegSetValueEx(handle, key.str(), 0, type, (unsigned char *)&val, size);
- RegCloseKey( handle );
- }
- return (returnValue == ERROR_SUCCESS);
- }
- Bool GetStringFromRegistry(AsciiString path, AsciiString key, AsciiString& val)
- {
- AsciiString fullPath = "SOFTWARE\\Electronic Arts\\EA Games\\Generals";
- fullPath.concat(path);
- DEBUG_LOG(("GetStringFromRegistry - looking in %s for key %s\n", fullPath.str(), key.str()));
- if (getStringFromRegistry(HKEY_LOCAL_MACHINE, fullPath.str(), key.str(), val))
- {
- return TRUE;
- }
- return getStringFromRegistry(HKEY_CURRENT_USER, fullPath.str(), key.str(), val);
- }
- Bool GetUnsignedIntFromRegistry(AsciiString path, AsciiString key, UnsignedInt& val)
- {
- AsciiString fullPath = "SOFTWARE\\Electronic Arts\\EA Games\\Generals";
- fullPath.concat(path);
- DEBUG_LOG(("GetUnsignedIntFromRegistry - looking in %s for key %s\n", fullPath.str(), key.str()));
- if (getUnsignedIntFromRegistry(HKEY_LOCAL_MACHINE, fullPath.str(), key.str(), val))
- {
- return TRUE;
- }
- return getUnsignedIntFromRegistry(HKEY_CURRENT_USER, fullPath.str(), key.str(), val);
- }
- AsciiString GetRegistryLanguage(void)
- {
- static Bool cached = FALSE;
- static AsciiString val = "english";
- if (cached) {
- return val;
- } else {
- cached = TRUE;
- }
- GetStringFromRegistry("", "Language", val);
- return val;
- }
- AsciiString GetRegistryGameName(void)
- {
- AsciiString val = "GeneralsMPTest";
- GetStringFromRegistry("", "SKU", val);
- return val;
- }
- UnsignedInt GetRegistryVersion(void)
- {
- UnsignedInt val = 65536;
- GetUnsignedIntFromRegistry("", "Version", val);
- return val;
- }
- UnsignedInt GetRegistryMapPackVersion(void)
- {
- UnsignedInt val = 65536;
- GetUnsignedIntFromRegistry("", "MapPackVersion", val);
- return val;
- }
|