| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- // ================================================================================
- // == This file is a part of Turbo Badger. (C) 2011-2014, Emil Segerås ==
- // == See tb_core.h for more information. ==
- // ================================================================================
- #include "tb_system.h"
- #ifdef TB_SYSTEM_WINDOWS
- #include <Windows.h>
- #include <mmsystem.h>
- #include <stdio.h>
- #ifdef TB_RUNTIME_DEBUG_INFO
- void TBDebugOut(const char *str)
- {
- OutputDebugString(str);
- }
- #endif // TB_RUNTIME_DEBUG_INFO
- namespace tb {
- // == TBSystem ========================================
- double TBSystem::GetTimeMS()
- {
- return timeGetTime();
- }
- // Implementation currently done in port_glut.cpp.
- // Windows timer suck. Glut timers suck too (can't be canceled) but that will do for now.
- //void TBSystem::RescheduleTimer(double fire_time)
- //{
- //}
- int TBSystem::GetLongClickDelayMS()
- {
- return 500;
- }
- int TBSystem::GetPanThreshold()
- {
- return 5 * GetDPI() / 96;
- }
- int TBSystem::GetPixelsPerLine()
- {
- return 40 * GetDPI() / 96;
- }
- int TBSystem::GetDPI()
- {
- return 96;
- /*
- HDC hdc = GetDC(nullptr);
- int DPI_x = GetDeviceCaps(hdc, LOGPIXELSX);
- ReleaseDC(nullptr, hdc);
- #if 0 // TEST CODE!
- DPI_x *= 2;
- #endif
- return DPI_x;
- */
- }
- }; // namespace tb
- #endif // TB_SYSTEM_WINDOWS
|