/* HexChat * Copyright (c) 2011-2012 Berke Viktor. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include #include #include #include #include "xchat-plugin.h" static xchat_plugin *ph; /* plugin handle */ static char name[] = "WinSys"; static char desc[] = "Display info about your hardware and OS"; static char version[] = "1.1"; static int firstRun; static char *wmiOs; static char *wmiCpu; static char *wmiVga; static int getCpuArch (void) { OSVERSIONINFOEX osvi; SYSTEM_INFO si; osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX); GetVersionEx ((LPOSVERSIONINFOW) &osvi); GetSystemInfo (&si); if (si.wProcessorArchitecture == 9) { return 64; } else { return 86; } } #if 0 /* use WMI instead, wProcessorArchitecture displays current binary arch instead of OS arch anyway */ static char * getOsName (void) { static char winver[32]; double mhz; OSVERSIONINFOEX osvi; SYSTEM_INFO si; osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX); GetVersionEx ((LPOSVERSIONINFOW) &osvi); GetSystemInfo (&si); strcpy (winver, "Windows "); switch (osvi.dwMajorVersion) { case 5: switch (osvi.dwMinorVersion) { case 1: strcat (winver, "XP"); break; case 2: if (osvi.wProductType == VER_NT_WORKSTATION) { strcat (winver, "XP x64 Edition"); } else { if (GetSystemMetrics(SM_SERVERR2) == 0) { strcat (winver, "Server 2003"); } else { strcat (winver, "Server 2003 R2"); } } break; } break; case 6: switch (osvi.dwMinorVersion) { case 0: if (osvi.wProductType == VER_NT_WORKSTATION) { strcat (winver, "Vista"); } else { strcat (winver, "Server 2008"); } break; case 1: if (osvi.wProductType == VER_NT_WORKSTATION) { strcat (winver, "7"); } else { strcat (winver, "Server 2008 R2"); } break; case 2: if (osvi.wProductType == VER_NT_WORKSTATION) { strcat (winver, "8"); } else { strcat (winver, "8 Server"); } break; } break; } if (si.wProcessorArchitecture == 9) { strcat (winver, " (x64)"); } else { strcat (winver, " (x86)"); } return winver; } /* x86-only, SDK-only, use WMI instead */ static char * getCpuName (void) { // Get extended ids. unsigned int nExIds; unsigned int i; int CPUInfo[4] = {-1}; static char CPUBrandString[128]; __cpuid (CPUInfo, 0x80000000); nExIds = CPUInfo[0]; /* Get the information associated with each extended ID. */ for (i=0x80000000; i <= nExIds; ++i) { __cpuid (CPUInfo, i); if (i == 0x80000002) { memcpy (CPUBrandString, CPUInfo, sizeof (CPUInfo)); } else if (i == 0x80000003) { memcpy( CPUBrandString + 16, CPUInfo, sizeof (CPUInfo)); } else if (i == 0x80000004) { memcpy (CPUBrandString + 32, CPUInfo, sizeof (CPUInfo)); } } return CPUBrandString; } #endif static char * getCpuMhz (void) { HKEY hKey; int result; int data; int dataSize; double cpuspeed; static char buffer[16]; const char *cpuspeedstr; if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, TEXT("Hardware\\Description\\System\\CentralProcessor\\0"), 0, KEY_QUERY_VALUE, &hKey) == ERROR_SUCCESS) { dataSize = sizeof (data); result = RegQueryValueEx (hKey, TEXT("~MHz"), 0, 0, (LPBYTE)&data, (LPDWORD)&dataSize); RegCloseKey (hKey); if (result == ERROR_SUCCESS) { cpuspeed = ( data > 1000 ) ? data / 1000 : data; cpuspeedstr = ( data > 1000 ) ? "GHz" : "MHz"; sprintf (buffer, "%.2f %s", cpuspeed, cpuspeedstr); } } return buffer; } static char * getMemoryInfo (void) { static char buffer[32]; MEMORYSTATUSEX meminfo; meminfo.dwLength = sizeof (meminfo); GlobalMemoryStatusEx (&meminfo); sprintf (buffer, "%I64d MB Total (%I64d MB Free)", meminfo.ullTotalPhys / 1024 / 1024, meminfo.ullAvailPhys / 1024 / 1024); return buffer; } static char * getWmiInfo (int mode) { /* for more details about this wonderful API, see http://msdn.microsoft.com/en-us/site/aa394138 http://msdn.microsoft.com/en-us/site/aa390423 http://msdn.microsoft.com/en-us/library/windows/desktop/aa394138%28v=vs.85%29.aspx http://social.msdn.microsoft.com/forums/en-US/vc