/* Copyright (C) 2005-2012, Thorvald Natvig All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of the Mumble Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "../mumble_plugin_win32.h" static BYTE *identptr; static BYTE *contextptr; static BYTE *posptr; static void inline u8(std::wstring &dst, const std::string &src) { if (src.length() > static_cast(std::numeric_limits::max())) { dst.clear(); return; } int len = MultiByteToWideChar(CP_UTF8, 0, src.data(), static_cast(src.length()), NULL, 0); wchar_t *wbuff = reinterpret_cast(_alloca(sizeof(wchar_t) * len)); MultiByteToWideChar(CP_UTF8, 0, src.data(), static_cast(src.length()), wbuff, len); dst.assign(wbuff, len); } static int fetch(float *avatar_pos, float *avatar_front, float *avatar_top, float *camera_pos, float *camera_front, float *camera_top, std::string &context, std::wstring &identity) { char identblock[0x200]; char contextblock[0x80]; float posblock[64]; if (! peekProc(identptr, identblock) || ! peekProc(contextptr, contextblock) || ! peekProc(posptr, posblock)) return false; std::string ident = std::string(identblock+0x188, strnlen(identblock + 0x188, 0x78)) + std::string("@") + std::string(identblock, strnlen(identblock, 0x80)); u8(identity, ident); #ifdef PLUGIN_DEBUG printf("%ls\n", identity.c_str()); #endif context.assign(reinterpret_cast(contextblock), 4); #ifdef PLUGIN_DEBUG DWORD *ctx = reinterpret_cast(contextblock); printf("%08x\n", *ctx); #endif #ifdef PLUGIN_DEBUG printf("Avatar %8.3f %8.3f %8.3f\n", posblock[0], posblock[1], posblock[2]); printf("AvatarF %8.3f %8.3f %8.3f\n", posblock[15], posblock[16], posblock[17]); printf("Camera %8.3f %8.3f %8.3f\n", posblock[3], posblock[4], posblock[5]); printf("CameraF %8.3f %8.3f %8.3f\n", posblock[18], posblock[19], posblock[20]); printf("SpawnST %d\n", * reinterpret_cast(& posblock[52])); #endif if (* reinterpret_cast(& posblock[52]) == 1) { for (int i=0;i<3;++i) { avatar_pos[i] = posblock[i]; avatar_front[i] = posblock[i+15]; camera_pos[i] = posblock[i+3]; camera_front[i] = posblock[i+18]; avatar_top[i] = camera_top[i] = 0.0f; } } else { for (int i=0;i<3;++i) { avatar_pos[i] = avatar_front[i] = avatar_top[i] = camera_pos[i] = camera_front[i] = camera_top[i] = 0.0f; } } return true; } static int trylock(const std::multimap &pids) { identptr = contextptr = posptr = NULL; if (! initialize(pids, L"GameClient.exe")) return false; char version[17]; peekProc(pModule + 0x1616080, version); version[16]=0; if (memcmp(version, "ST.0.20100217c.3", sizeof(version)) == 0) { #ifdef PLUGIN_DEBUG printf("STO: WANTLINK %s\n", version); #endif contextptr = pModule + 0x16b2cd4; identptr = contextptr + 0x444; posptr = pModule + 0x18c2340; return true; } else { generic_unlock(); return false; } } static const std::wstring longdesc() { return std::wstring(L"Supports Star Trek Online"); } static std::wstring description(L"Star Trek Online ST.0.20100208b.4"); static std::wstring shortname(L"Star Trek Online"); static int trylock1() { return trylock(std::multimap()); } static MumblePlugin stoplug = { MUMBLE_PLUGIN_MAGIC, description, shortname, NULL, NULL, trylock1, generic_unlock, longdesc, fetch }; static MumblePlugin2 stoplug2 = { MUMBLE_PLUGIN_MAGIC_2, MUMBLE_PLUGIN_VERSION, trylock }; extern "C" __declspec(dllexport) MumblePlugin *getMumblePlugin() { return &stoplug; } extern "C" __declspec(dllexport) MumblePlugin2 *getMumblePlugin2() { return &stoplug2; }