# HG changeset patch
# User dewyatt
# Date 1279475303 14400
# Node ID 436183eb30c849151429ddc22ae0c4aa28fb144e
# Parent 2072fed2f583ce9e7c02fefc32c2475e06caee4c# Parent af1d018ebbe6ff702fc0d7a8fcbab278087b8224
Merge with main repo (mainly for non-printable character fix)
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/GLIMM.sln
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/GLIMM.sln Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLIMM", "GLIMM.vcproj", "{F21B830F-20A9-4473-B67A-21D1743C6E19}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {F21B830F-20A9-4473-B67A-21D1743C6E19}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F21B830F-20A9-4473-B67A-21D1743C6E19}.Debug|Win32.Build.0 = Debug|Win32
+ {F21B830F-20A9-4473-B67A-21D1743C6E19}.Release|Win32.ActiveCfg = Release|Win32
+ {F21B830F-20A9-4473-B67A-21D1743C6E19}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/GLIMM.vcproj
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/GLIMM.vcproj Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,233 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/include/App.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/include/App.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,37 @@
+#ifndef APP_HPP
+#define APP_HPP
+
+#include "Window.hpp"
+
+class App : public Window_Listener
+{
+public:
+ App();
+ virtual ~App();
+
+ void Initialize();
+ void Finalize();
+
+ void Run();
+
+ virtual void On_Close();
+ virtual void On_Key_Down(int Key);
+ virtual void On_Key_Up(int Key);
+ virtual void On_Char(unsigned int Char);
+ virtual void On_Resized(unsigned int Width, unsigned int Height);
+ virtual void On_Mouse_Button_Down(Mouse_Button Button);
+
+private:
+ void Update();
+ void Draw();
+
+ static const int Width = 800;
+ static const int Height = 600;
+ static const int Bits_Per_Pixel = 32;
+ static const bool Fullscreen = true;
+
+ Window my_Window;
+ bool my_Done;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/include/IMM.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/include/IMM.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,41 @@
+#ifndef IMM_HPP
+#define IMM_HPP
+
+#define WIN32_LEAN_AND_MEAN
+#include
+#include
+
+class IMM
+{
+public:
+ IMM();
+ ~IMM();
+
+ void Initialize(HWND Window);
+ void Finalize();
+
+ LRESULT Handle_Message(HWND Window, UINT Message, WPARAM wParam, LPARAM lParam, bool &Ate);
+
+ void Enable();
+ void Disable();
+ bool Is_Enabled();
+ void Toggle();
+
+ void Focus_Gained();
+ void Focus_Lost();
+
+private:
+ void Update_Input_Locale();
+ void Cancel_Composition();
+ void Input_Language_Changed();
+
+ bool my_COM_Initialized;
+ ITfThreadMgr *my_Thread_Manager;
+ HWND my_Window;
+ HIMC my_Context;
+ HKL my_HKL;
+ bool my_Vertical_Candidates;
+ bool my_Enabled;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/include/Video_Mode.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/include/Video_Mode.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,30 @@
+#ifndef VIDEO_MODE_HPP
+#define VIDEO_MODE_HPP
+
+#include
+
+class Video_Mode
+{
+public:
+ Video_Mode();
+ Video_Mode(unsigned int The_Width, unsigned int The_Height, unsigned int The_Bits_Per_Pixel);
+
+ static Video_Mode Get_Desktop_Mode();
+
+ static std::size_t Get_Mode_Count();
+ static Video_Mode Get_Mode(std::size_t Index);
+
+ bool Is_Valid() const;
+
+ bool operator==(const Video_Mode &Mode) const;
+ bool operator!=(const Video_Mode &Mode) const;
+
+ unsigned int Width;
+ unsigned int Height;
+ unsigned int Bits_Per_Pixel;
+
+private:
+ static void Initialize_Modes();
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/include/Window.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/include/Window.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,63 @@
+#ifndef WINDOW_HPP
+#define WINDOW_HPP
+
+#include
+
+#define WIN32_LEAN_AND_MEAN
+#include
+
+#include "Video_Mode.hpp"
+#include "Window_Listener.hpp"
+#include "IMM.hpp"
+
+class Window
+{
+public:
+ Window();
+ ~Window();
+
+ void Initialize(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen);
+ void Finalize();
+
+ void Set_Listener(Window_Listener *Listener);
+
+ void Show();
+ void Hide();
+
+ void Handle_Events();
+ void Display();
+
+ void Show_Cursor();
+ void Hide_Cursor();
+
+ HWND Get_Handle();
+ IMM &Get_IMM();
+
+private:
+ static const wchar_t *Window_Class_Name;
+
+ void Register_Class();
+ void Unregister_Class();
+
+ void Create_Window(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen);
+ void Destroy_Window();
+
+ void Create_Context(const Video_Mode &Mode);
+ void Destroy_Context();
+
+ void Switch_To_Fullscreen(const Video_Mode &Mode);
+
+ LRESULT Handle_Message(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam);
+ static LRESULT CALLBACK Window_Procedure(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam);
+
+ HWND my_Handle;
+ Video_Mode my_Video_Mode;
+ bool my_Fullscreen;
+ HDC my_Device_Context;
+ HGLRC my_GL_Context;
+ bool my_Class_Registered;
+ Window_Listener *my_Listener;
+ IMM my_IMM;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/include/Window_Listener.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/include/Window_Listener.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,23 @@
+#ifndef WINDOW_LISTENER_HPP
+#define WINDOW_LISTENER_HPP
+
+enum Mouse_Button
+{
+ Mouse_Button_Left,
+ Mouse_Button_Right
+};
+
+class Window_Listener
+{
+public:
+ virtual void On_Close(){}
+ virtual void On_Key_Down(int Key){}
+ virtual void On_Key_Up(int Key){}
+ virtual void On_Char(unsigned int Char){}
+ virtual void On_Resized(unsigned int Width, unsigned int Height){}
+ virtual void On_Mouse_Button_Down(Mouse_Button Button){}
+ virtual void On_Mouse_Button_Up(Mouse_Button Button){}
+
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/src/App.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/src/App.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,113 @@
+#include "App.hpp"
+#include
+#include
+
+#pragma comment(lib, "glu32.lib")
+
+GLfloat Rotation = 0.0f;
+
+App::App() : my_Done(false)
+{
+
+}
+
+App::~App()
+{
+ Finalize();
+}
+
+void App::Initialize()
+{
+ Finalize();
+
+ my_Window.Initialize(L"GLIMM", Video_Mode(Width, Height, Bits_Per_Pixel), Fullscreen);
+ my_Window.Set_Listener(this);
+ my_Window.Show();
+ my_Window.Hide_Cursor();
+}
+
+void App::Finalize()
+{
+ my_Window.Finalize();
+}
+
+void App::Run()
+{
+ Initialize();
+ while (!my_Done)
+ {
+ my_Window.Handle_Events();
+
+ Update();
+ Draw();
+ my_Window.Display();
+ }
+}
+
+void App::On_Close()
+{
+ my_Done = true;
+ my_Window.Hide();
+}
+
+void App::On_Key_Down(int Key)
+{
+ switch (Key)
+ {
+ case VK_ESCAPE:
+ On_Close();
+ break;
+ }
+}
+
+void App::On_Key_Up(int Key)
+{
+
+}
+
+void App::On_Char(unsigned int Char)
+{
+ printf("Char: U+%04X\n", Char);
+}
+
+void App::On_Resized(unsigned int Width, unsigned int Height)
+{
+ glViewport(0, 0, Width, Height);
+ glMatrixMode(GL_PROJECTION);
+ glLoadIdentity();
+
+ glMatrixMode(GL_MODELVIEW);
+ glLoadIdentity();
+}
+
+void App::On_Mouse_Button_Down(Mouse_Button Button)
+{
+ switch (Button)
+ {
+ case Mouse_Button_Left:
+ my_Window.Get_IMM().Toggle();
+ break;
+ }
+}
+
+void App::Update()
+{
+ Rotation += 0.2f;
+}
+
+void App::Draw()
+{
+ glClear(GL_COLOR_BUFFER_BIT);
+
+ glLoadIdentity();
+ glRotatef(Rotation, 0.0f, 0.0f, -1.0f);
+
+ glBegin(GL_TRIANGLES);
+ glColor3f(0.7f, 0.0f, 0.0f);
+ glVertex3f(0.0f, 0.5f, 0.0f);
+ glColor3f(0.0f, 0.7f, 0.0f);
+ glVertex3f(-0.5f, -0.5f, 0.0f);
+ glColor3f(0.0f, 0.0f, 0.7f);
+ glVertex3f(0.5f, -0.5f, 0.0f);
+ glEnd();
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/src/IMM.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/src/IMM.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,237 @@
+#include "IMM.hpp"
+#include
+
+IMM::IMM() : my_COM_Initialized(false),
+ my_Thread_Manager(0),
+ my_Window(0),
+ my_Context(0),
+ my_HKL(0),
+ my_Vertical_Candidates(false),
+ my_Enabled(false)
+{
+
+}
+
+IMM::~IMM()
+{
+ Finalize();
+}
+
+void IMM::Initialize(HWND Window)
+{
+ Finalize();
+
+ my_Window = Window;
+
+ if (SUCCEEDED(CoInitializeEx(NULL, COINIT_APARTMENTTHREADED)))
+ {
+ my_COM_Initialized = true;
+ if (SUCCEEDED(CoCreateInstance(CLSID_TF_ThreadMgr, NULL, CLSCTX_INPROC_SERVER, IID_ITfThreadMgr, reinterpret_cast(&my_Thread_Manager))))
+ {
+ ITfDocumentMgr *Document_Manager = 0;
+ if (SUCCEEDED(my_Thread_Manager->AssociateFocus(Window, NULL, &Document_Manager)))
+ {
+ if (Document_Manager)
+ Document_Manager->Release();
+ }
+ else
+ printf("Warning: ITfThreadMgr->AssociateFocus failed\n");
+ }
+ else
+ printf("Warning: Failed to create ITfThreadMgr instance\n");
+ }
+ else
+ printf("Warning: Failed to initialize COM\n");
+
+ ImmDisableTextFrameService((DWORD)-1);
+
+ my_Context = ImmGetContext(my_Window);
+ ImmReleaseContext(my_Window, my_Context);
+ if (!my_Context)
+ throw std::runtime_error("No context (No IME installed?)");
+
+ Update_Input_Locale();
+ Cancel_Composition();
+ Disable();
+}
+
+void IMM::Finalize()
+{
+ if (my_Thread_Manager)
+ {
+ my_Thread_Manager->Release();
+ my_Thread_Manager = 0;
+ }
+ if (my_COM_Initialized)
+ {
+ CoUninitialize();
+ my_COM_Initialized = false;
+ }
+}
+
+#define GET_LANG(hkl) LOWORD((hkl))
+#define GET_PRIMLANG(hkl) ((WORD)PRIMARYLANGID(GET_LANG((hkl))))
+#define GET_SUBLANG(hkl) SUBLANGID(GET_LANG((hkl)))
+
+void IMM::Update_Input_Locale()
+{
+ static HKL Previous_HKL = 0;
+ my_HKL = GetKeyboardLayout(0);
+ if (Previous_HKL == my_HKL)
+ return;
+
+ Previous_HKL = my_HKL;
+ my_Vertical_Candidates = false;
+ switch (GET_PRIMLANG(my_HKL))
+ {
+ case LANG_CHINESE:
+ my_Vertical_Candidates = true;
+ switch (GET_SUBLANG(my_HKL))
+ {
+ case SUBLANG_CHINESE_SIMPLIFIED:
+ my_Vertical_Candidates = false;
+ break;
+ }
+ break;
+ case LANG_JAPANESE:
+ my_Vertical_Candidates = true;
+ break;
+ }
+}
+
+LRESULT IMM::Handle_Message(HWND Window, UINT Message, WPARAM wParam, LPARAM lParam, bool &Ate)
+{
+ Ate = false;
+ switch (Message)
+ {
+ case WM_INPUTLANGCHANGE:
+ Input_Language_Changed();
+ break;
+ case WM_IME_SETCONTEXT:
+ lParam = 0;
+ break;
+ case WM_IME_STARTCOMPOSITION:
+ Ate = true;
+ break;
+ case WM_IME_COMPOSITION:
+ {
+ Ate = true;
+ HIMC Context = ImmGetContext(Window);
+ if (!Context)
+ break;
+
+ if (lParam & GCS_RESULTSTR)
+ {
+ LONG Length = ImmGetCompositionStringW(Context, GCS_RESULTSTR, 0, 0);
+ std::wstring Composition(Length / sizeof(wchar_t), 0);
+ Length = ImmGetCompositionStringW(Context, GCS_RESULTSTR, &Composition[0], Composition.size() * sizeof(Composition[0]));
+ printf("GCS_RESULTSTR: ");
+ for (LONG i = 0; i < Length / sizeof(wchar_t); ++i)
+ printf("U+%04X ", Composition[i]);
+
+ printf("\n");
+ }
+ if (lParam & GCS_COMPSTR)
+ {
+ LONG Length = ImmGetCompositionStringW(Context, GCS_COMPSTR, 0, 0);
+ std::wstring Composition(Length / sizeof(wchar_t), 0);
+ Length = ImmGetCompositionStringW(Context, GCS_COMPSTR, &Composition[0], Composition.size() * sizeof(Composition[0]));
+ printf("GCS_COMPSTR: ");
+ for (LONG i = 0; i < Length / sizeof(wchar_t); ++i)
+ printf("U+%04X ", Composition[i]);
+
+ printf("\n");
+ }
+ ImmReleaseContext(Window, Context);
+ }
+ break;
+ case WM_IME_ENDCOMPOSITION:
+ break;
+ case WM_IME_NOTIFY:
+ switch (wParam)
+ {
+ case IMN_SETCONVERSIONMODE:
+
+ break;
+ case IMN_SETOPENSTATUS:
+ Update_Input_Locale();
+ break;
+ case IMN_OPENCANDIDATE:
+ case IMN_CHANGECANDIDATE:
+ Ate = true;
+ break;
+ case IMN_CLOSECANDIDATE:
+ Ate = true;
+ break;
+ default:
+ Ate = true;
+ break;
+ }
+ break;
+ }
+ return 0;
+}
+
+void IMM::Enable()
+{
+ ImmAssociateContext(my_Window, my_Context);
+ Update_Input_Locale();
+ my_Enabled = true;
+ printf("* Enabled\n");
+}
+
+void IMM::Disable()
+{
+ ImmAssociateContext(my_Window, 0);
+ my_Enabled = false;
+ printf("* Disabled\n");
+}
+
+bool IMM::Is_Enabled()
+{
+ return my_Enabled;
+}
+
+void IMM::Toggle()
+{
+ if (my_Enabled)
+ Disable();
+ else
+ Enable();
+}
+
+void IMM::Focus_Gained()
+{
+ if (my_Enabled)
+ Enable();
+}
+
+void IMM::Focus_Lost()
+{
+ bool Enabled = my_Enabled;
+ Cancel_Composition();
+ Disable();
+ my_Enabled = Enabled;
+}
+
+void IMM::Cancel_Composition()
+{
+ HIMC hIMC = ImmGetContext(my_Window);
+ if (!hIMC)
+ return;
+
+ ImmNotifyIME(hIMC, NI_COMPOSITIONSTR, CPS_CANCEL, 0);
+ ImmNotifyIME(hIMC, NI_CLOSECANDIDATE, 0, 0);
+ ImmReleaseContext(my_Window, hIMC);
+}
+
+void IMM::Input_Language_Changed()
+{
+ Update_Input_Locale();
+ HWND hwndImeDef = ImmGetDefaultIMEWnd(my_Window);
+ if (hwndImeDef)
+ {
+ SendMessageA(hwndImeDef, WM_IME_CONTROL, IMC_OPENSTATUSWINDOW, 0);
+ SendMessageA(hwndImeDef, WM_IME_CONTROL, IMC_CLOSESTATUSWINDOW, 0);
+ }
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/src/Main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/src/Main.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,24 @@
+#include "App.hpp"
+#include
+
+int main(int argc, char *argv[])
+{
+ int Result = EXIT_SUCCESS;
+ try
+ {
+ App theApp;
+ theApp.Run();
+ }
+ catch (const std::exception& e)
+ {
+ printf("Error: %s\n", e.what());
+ Result = EXIT_FAILURE;
+ }
+ catch (...)
+ {
+ printf("Unhandled exception\n");
+ Result = EXIT_FAILURE;
+ }
+ system("PAUSE");
+ return Result;
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/src/Video_Mode.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/src/Video_Mode.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,100 @@
+#include "Video_Mode.hpp"
+#include
+#include
+#define WIN32_LEAN_AND_MEAN
+#include
+
+namespace
+{
+
+ typedef std::vector Video_Mode_List;
+ Video_Mode_List Supported_Modes;
+
+ struct Compare_Modes
+ {
+ bool operator()(const Video_Mode &Mode_1, const Video_Mode &Mode_2) const
+ {
+ if (Mode_1.Bits_Per_Pixel > Mode_2.Bits_Per_Pixel)
+ return true;
+ else if (Mode_1.Bits_Per_Pixel < Mode_2.Bits_Per_Pixel)
+ return false;
+ else if (Mode_1.Width > Mode_2.Width)
+ return true;
+ else if (Mode_1.Width < Mode_2.Width)
+ return false;
+ else
+ return Mode_1.Height > Mode_2.Height;
+ }
+ };
+
+}
+
+Video_Mode::Video_Mode() : Width(0),
+ Height(0),
+ Bits_Per_Pixel(0)
+{
+
+}
+
+Video_Mode::Video_Mode(unsigned int The_Width, unsigned int The_Height, unsigned int The_Bits_Per_Pixel)
+ : Width(The_Width),
+ Height(The_Height),
+ Bits_Per_Pixel(The_Bits_Per_Pixel)
+{
+
+}
+
+Video_Mode Video_Mode::Get_Desktop_Mode()
+{
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &Device_Mode);
+ return Video_Mode(Device_Mode.dmPelsWidth, Device_Mode.dmPelsHeight, Device_Mode.dmBitsPerPel);
+}
+
+std::size_t Video_Mode::Get_Mode_Count()
+{
+ Initialize_Modes();
+ return Supported_Modes.size();
+}
+
+Video_Mode Video_Mode::Get_Mode(std::size_t Index)
+{
+ Initialize_Modes();
+ return Supported_Modes[Index];
+}
+
+bool Video_Mode::Is_Valid() const
+{
+ Initialize_Modes();
+ return Supported_Modes.end() != std::find(Supported_Modes.begin(), Supported_Modes.end(), *this);
+}
+
+bool Video_Mode::operator==(const Video_Mode &Mode) const
+{
+ return (Width == Mode.Width
+ && Height == Mode.Height
+ && Bits_Per_Pixel == Mode.Bits_Per_Pixel);
+}
+
+bool Video_Mode::operator!=(const Video_Mode &Mode) const
+{
+ return !(*this == Mode);
+}
+
+void Video_Mode::Initialize_Modes()
+{
+ static bool Initialized = false;
+ if (!Initialized)
+ {
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ for (std::size_t i = 0; 0 != EnumDisplaySettings(NULL, i, &Device_Mode); ++i)
+ {
+ Video_Mode Mode(Device_Mode.dmPelsWidth, Device_Mode.dmPelsHeight, Device_Mode.dmBitsPerPel);
+ if (Supported_Modes.end() == std::find(Supported_Modes.begin(), Supported_Modes.end(), Mode))
+ Supported_Modes.push_back(Mode);
+ }
+ std::sort(Supported_Modes.begin(), Supported_Modes.end(), Compare_Modes());
+ }
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLIMM/src/Window.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLIMM/src/Window.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,317 @@
+#include "Window.hpp"
+#include
+
+#pragma comment(lib, "opengl32.lib")
+
+const wchar_t *Window::Window_Class_Name = L"GLTSF";
+
+Window::Window() : my_Handle(0),
+ my_Device_Context(0),
+ my_GL_Context(0),
+ my_Class_Registered(false),
+ my_Listener(0)
+{
+
+}
+
+Window::~Window()
+{
+ Finalize();
+ Show_Cursor();
+}
+
+void Window::Initialize(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen)
+{
+ Finalize();
+
+ my_Video_Mode = Mode;
+ if (!my_Video_Mode.Is_Valid())
+ throw std::runtime_error("Invalid video mode");
+
+ my_Fullscreen = Fullscreen;
+ Register_Class();
+ Create_Window(Title, Mode, Fullscreen);
+ Show();
+ my_IMM.Initialize(my_Handle);
+}
+
+void Window::Finalize()
+{
+ my_IMM.Finalize();
+ Destroy_Window();
+ Unregister_Class();
+}
+
+void Window::Set_Listener(Window_Listener *Listener)
+{
+ my_Listener = Listener;
+}
+
+void Window::Show()
+{
+ if (my_Handle)
+ ShowWindow(my_Handle, SW_SHOW);
+}
+
+void Window::Hide()
+{
+ if (my_Handle)
+ ShowWindow(my_Handle, SW_HIDE);
+}
+
+void Window::Handle_Events()
+{
+ MSG Message = {0};
+ while (PeekMessageW(&Message, NULL, 0, 0, PM_REMOVE))
+ {
+ TranslateMessage(&Message);
+ DispatchMessageW(&Message);
+ }
+}
+
+void Window::Display()
+{
+ if (my_Device_Context && my_GL_Context)
+ SwapBuffers(my_Device_Context);
+}
+
+void Window::Show_Cursor()
+{
+ ShowCursor(TRUE);
+}
+
+void Window::Hide_Cursor()
+{
+ ShowCursor(FALSE);
+}
+
+HWND Window::Get_Handle()
+{
+ return my_Handle;
+}
+
+IMM & Window::Get_IMM()
+{
+ return my_IMM;
+}
+
+void Window::Register_Class()
+{
+ WNDCLASSEXW Window_Class = {0};
+ Window_Class.cbSize = sizeof(Window_Class);
+ Window_Class.style = 0;
+ Window_Class.lpfnWndProc = &Window::Window_Procedure;
+ Window_Class.cbClsExtra = 0;
+ Window_Class.cbWndExtra = 0;
+ Window_Class.hInstance = GetModuleHandle(NULL);
+ Window_Class.hIcon = NULL;
+ Window_Class.hCursor = NULL;
+ Window_Class.hbrBackground = NULL;
+ Window_Class.lpszMenuName = NULL;
+ Window_Class.lpszClassName = Window_Class_Name;
+ Window_Class.hIconSm = NULL;
+ if (0 == RegisterClassExW(&Window_Class))
+ throw std::runtime_error("Failed to register window class");
+
+ my_Class_Registered = true;
+}
+
+void Window::Unregister_Class()
+{
+ if (my_Class_Registered)
+ {
+ if (0 == UnregisterClassW(Window_Class_Name, GetModuleHandle(NULL)))
+ printf("Warning: Failed to unregister window class\n");
+
+ my_Class_Registered = false;
+ }
+}
+
+void Window::Create_Window(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen)
+{
+ HDC Screen_DC = GetDC(NULL);
+ int Left = (GetDeviceCaps(Screen_DC, HORZRES) - my_Video_Mode.Width) / 2;
+ int Top = (GetDeviceCaps(Screen_DC, VERTRES) - my_Video_Mode.Height) / 2;
+ int Width = my_Video_Mode.Width;
+ int Height = my_Video_Mode.Height;
+ ReleaseDC(NULL, Screen_DC);
+
+ DWORD Style = WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU;
+ if (!my_Fullscreen)
+ {
+ RECT Rect = {0, 0, Width, Height};
+ AdjustWindowRect(&Rect, Style, false);
+ Width = Rect.right - Rect.left;
+ Height = Rect.bottom - Rect.top;
+ }
+ my_Handle = CreateWindowW(Window_Class_Name, Title.c_str(), Style, Left, Top, Width, Height, NULL, NULL, GetModuleHandle(NULL), this);
+ if (!my_Handle)
+ throw std::runtime_error("Failed to create window");
+
+ if (Fullscreen)
+ Switch_To_Fullscreen(Mode);
+
+ Create_Context(Mode);
+
+ RECT Rect = {0};
+ GetClientRect(my_Handle, &Rect);
+ //TODO: ...
+}
+
+void Window::Destroy_Window()
+{
+ Destroy_Context();
+ if (my_Handle)
+ {
+ DestroyWindow(my_Handle);
+ my_Handle = 0;
+
+ if (my_Fullscreen)
+ ChangeDisplaySettings(NULL, 0);
+ }
+}
+
+void Window::Create_Context(const Video_Mode &Mode)
+{
+ my_Device_Context = GetDC(my_Handle);
+ if (!my_Device_Context)
+ throw std::runtime_error("Failed to get device context");
+
+ PIXELFORMATDESCRIPTOR Pixel_Descriptor = {0};
+ Pixel_Descriptor.nSize = sizeof(Pixel_Descriptor);
+ Pixel_Descriptor.nVersion = 1;
+ Pixel_Descriptor.iLayerType = PFD_MAIN_PLANE;
+ Pixel_Descriptor.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
+ Pixel_Descriptor.iPixelType = PFD_TYPE_RGBA;
+ Pixel_Descriptor.cColorBits = static_cast(Mode.Bits_Per_Pixel);
+ Pixel_Descriptor.cDepthBits = 24;
+ Pixel_Descriptor.cStencilBits = 8;
+ Pixel_Descriptor.cAlphaBits = Mode.Bits_Per_Pixel == 32 ? 8 : 0;
+
+ int Best_Format = ChoosePixelFormat(my_Device_Context, &Pixel_Descriptor);
+ if (0 == Best_Format)
+ throw std::runtime_error("Failed to find suitable pixel format");
+
+ PIXELFORMATDESCRIPTOR Actual_Format = {0};
+ Actual_Format.nSize = sizeof(Actual_Format);
+ Actual_Format.nVersion = 1;
+ DescribePixelFormat(my_Device_Context, Best_Format, sizeof(Actual_Format), &Actual_Format);
+ if (!SetPixelFormat(my_Device_Context, Best_Format, &Actual_Format))
+ throw std::runtime_error("Failed to set device pixel format");
+
+ my_GL_Context = wglCreateContext(my_Device_Context);
+ if (!my_GL_Context)
+ throw std::runtime_error("Failed to create OpenGL context");
+
+ wglMakeCurrent(my_Device_Context, my_GL_Context);
+}
+
+void Window::Destroy_Context()
+{
+ if (my_GL_Context)
+ {
+ wglDeleteContext(my_GL_Context);
+ my_GL_Context = 0;
+ }
+ if (my_Device_Context)
+ {
+ ReleaseDC(my_Handle, my_Device_Context);
+ my_Device_Context = 0;
+ }
+}
+
+void Window::Switch_To_Fullscreen(const Video_Mode &Mode)
+{
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ Device_Mode.dmPelsWidth = Mode.Width;
+ Device_Mode.dmPelsHeight = Mode.Height;
+ Device_Mode.dmBitsPerPel = Mode.Bits_Per_Pixel;
+ Device_Mode.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL;
+
+ if (DISP_CHANGE_SUCCESSFUL != ChangeDisplaySettings(&Device_Mode, CDS_FULLSCREEN))
+ throw std::runtime_error("Failed to change to fullscreen mode");
+
+ SetWindowLong(my_Handle, GWL_STYLE, WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
+ SetWindowLong(my_Handle, GWL_EXSTYLE, WS_EX_APPWINDOW);
+
+ SetWindowPos(my_Handle, HWND_TOP, 0, 0, Mode.Width, Mode.Height, SWP_FRAMECHANGED);
+}
+
+LRESULT CALLBACK Window::Window_Procedure(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam)
+{
+ switch (Message)
+ {
+ case WM_CREATE:
+ {
+ LONG This = reinterpret_cast(reinterpret_cast(lParam)->lpCreateParams);
+ SetWindowLongPtr(Handle, GWLP_USERDATA, This);
+ return 0;
+ }
+ break;
+ case WM_DESTROY:
+ PostQuitMessage(0);
+ return 0;
+ break;
+ default:
+ {
+ Window* Win = reinterpret_cast(GetWindowLongPtr(Handle, GWLP_USERDATA));
+ if (Win)
+ return Win->Handle_Message(Handle, Message, wParam, lParam);
+ }
+ break;
+ }
+ return DefWindowProcW(Handle, Message, wParam, lParam);
+}
+
+#define Call_Listener(x)\
+ if (my_Listener) my_Listener->x
+
+LRESULT Window::Handle_Message(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam)
+{
+ bool IMM_Message = false;
+ LRESULT Result = my_IMM.Handle_Message(Handle, Message, wParam, lParam, IMM_Message);
+ if (IMM_Message)
+ return Result;
+
+ switch (Message)
+ {
+ case WM_SIZE:
+ Call_Listener(On_Resized(LOWORD(lParam), HIWORD(lParam)));
+ break;
+ case WM_CLOSE:
+ Call_Listener(On_Close());
+ break;
+ case WM_KEYDOWN:
+ Call_Listener(On_Key_Down(wParam));
+ break;
+ case WM_KEYUP:
+ Call_Listener(On_Key_Up(wParam));
+ break;
+ case WM_CHAR:
+ Call_Listener(On_Char(wParam));
+ break;
+ case WM_SETFOCUS:
+ my_IMM.Focus_Gained();
+ break;
+ case WM_KILLFOCUS:
+ my_IMM.Focus_Lost();
+ break;
+ case WM_LBUTTONDOWN:
+ Call_Listener(On_Mouse_Button_Down(Mouse_Button_Left));
+ break;
+ case WM_LBUTTONUP:
+ Call_Listener(On_Mouse_Button_Up(Mouse_Button_Left));
+ break;
+ case WM_RBUTTONDOWN:
+ Call_Listener(On_Mouse_Button_Down(Mouse_Button_Right));
+ break;
+ case WM_RBUTTONUP:
+ Call_Listener(On_Mouse_Button_Up(Mouse_Button_Right));
+ break;
+ default:
+ return DefWindowProcW(Handle, Message, wParam, lParam);
+ break;
+ }
+ return 0;
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/GLTSF.sln
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/GLTSF.sln Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 11.00
+# Visual Studio 2010
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLTSF", "GLTSF.vcxproj", "{790D58BA-E5F6-4286-A9C6-0DC28779789D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {790D58BA-E5F6-4286-A9C6-0DC28779789D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {790D58BA-E5F6-4286-A9C6-0DC28779789D}.Debug|Win32.Build.0 = Debug|Win32
+ {790D58BA-E5F6-4286-A9C6-0DC28779789D}.Release|Win32.ActiveCfg = Release|Win32
+ {790D58BA-E5F6-4286-A9C6-0DC28779789D}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/GLTSF.vcproj
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/GLTSF.vcproj Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/GLTSF.vcxproj
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/GLTSF.vcxproj Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,99 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {790D58BA-E5F6-4286-A9C6-0DC28779789D}
+ Win32Proj
+ GLTSF
+
+
+
+ Application
+ true
+ Unicode
+
+
+ Application
+ false
+ true
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ $(SolutionDir)bin\
+ obj\$(Configuration)\
+
+
+ false
+ $(SolutionDir)bin\
+ obj\$(Configuration)\
+
+
+
+
+
+ Level3
+ Disabled
+ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ include;%(AdditionalIncludeDirectories)
+
+
+ Console
+ true
+
+
+
+
+ Level3
+
+
+ MaxSpeed
+ true
+ true
+ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
+ include;%(AdditionalIncludeDirectories)
+
+
+ Console
+ true
+ true
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/GLTSF.vcxproj.filters
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/GLTSF.vcxproj.filters Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,51 @@
+
+
+
+
+ {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
+ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
+
+
+ {93995380-89BD-4b04-88EB-625FBE52EBFB}
+ h;hpp;hxx;hm;inl;inc;xsd
+
+
+ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
+ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
+
+
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+ Header Files
+
+
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+ Source Files
+
+
+
\ No newline at end of file
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/GLTSF_vs2008.sln
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/GLTSF_vs2008.sln Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLTSF", "GLTSF.vcproj", "{FC8A9A48-6667-4BDE-8E9B-5859408AEE83}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {FC8A9A48-6667-4BDE-8E9B-5859408AEE83}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FC8A9A48-6667-4BDE-8E9B-5859408AEE83}.Debug|Win32.Build.0 = Debug|Win32
+ {FC8A9A48-6667-4BDE-8E9B-5859408AEE83}.Release|Win32.ActiveCfg = Release|Win32
+ {FC8A9A48-6667-4BDE-8E9B-5859408AEE83}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/include/App.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/include/App.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,36 @@
+#ifndef APP_HPP
+#define APP_HPP
+
+#include "Window.hpp"
+
+class App : public Window_Listener
+{
+public:
+ App();
+ virtual ~App();
+
+ void Initialize();
+ void Finalize();
+
+ void Run();
+
+ virtual void On_Close();
+ virtual void On_Key_Down(int Key);
+ virtual void On_Key_Up(int Key);
+ virtual void On_Char(unsigned int Char);
+ virtual void On_Resized(unsigned int Width, unsigned int Height);
+
+private:
+ void Update();
+ void Draw();
+
+ static const int Width = 800;
+ static const int Height = 600;
+ static const int Bits_Per_Pixel = 32;
+ static const bool Fullscreen = true;
+
+ Window my_Window;
+ bool my_Done;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/include/TSF.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/include/TSF.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,83 @@
+#ifndef TSF_HPP
+#define TSF_HPP
+
+#include
+#include
+
+class TSF
+{
+public:
+ static void Initialize();
+ static void Finalize();
+
+private:
+ class TSF_Text_Store : public ITextStoreACP, public ITfContextOwnerCompositionSink
+ {
+ public:
+ //IUnknown
+ STDMETHODIMP QueryInterface(REFIID riid, void **ppvObject);
+ STDMETHODIMP_(ULONG) AddRef();
+ STDMETHODIMP_(ULONG) Release();
+
+ //ITextStoreACP
+ STDMETHODIMP AdviseSink(REFIID riid, IUnknown *punk, DWORD dwMask);
+ STDMETHODIMP UnadviseSink(IUnknown *punk);
+ STDMETHODIMP RequestLock(DWORD dwLockFlags, HRESULT *phrSession);
+ STDMETHODIMP GetStatus(TS_STATUS *pdcs);
+ STDMETHODIMP QueryInsert(LONG acpTestStart, LONG acpTestEnd, ULONG cch, LONG *pacpResultStart, LONG *pacpResultEnd);
+ STDMETHODIMP GetSelection(ULONG ulIndex, ULONG ulCount, TS_SELECTION_ACP *pSelection, ULONG *pcFetched);
+ STDMETHODIMP SetSelection(ULONG ulCount, const TS_SELECTION_ACP *pSelection);
+ STDMETHODIMP GetText(LONG acpStart, LONG acpEnd, WCHAR *pchPlain, ULONG cchPlainReq, ULONG *pcchPlainRet, TS_RUNINFO *prgRunInfo, ULONG cRunInfoReq, ULONG *pcRunInfoRet, LONG *pacpNext);
+ STDMETHODIMP SetText(DWORD dwFlags, LONG acpStart, LONG acpEnd, const WCHAR *pchText, ULONG cch, TS_TEXTCHANGE *pChange);
+ STDMETHODIMP GetFormattedText(LONG acpStart, LONG acpEnd, IDataObject **ppDataObject);
+ STDMETHODIMP GetEmbedded(LONG acpPos, REFGUID rguidService, REFIID riid, IUnknown **ppunk);
+ STDMETHODIMP QueryInsertEmbedded(const GUID *pguidService, const FORMATETC *pFormatEtc, BOOL *pfInsertable);
+ STDMETHODIMP InsertEmbedded(DWORD dwFlags, LONG acpStart, LONG acpEnd, IDataObject *pDataObject, TS_TEXTCHANGE *pChange);
+ STDMETHODIMP InsertTextAtSelection(DWORD dwFlags, const WCHAR *pchText, ULONG cch, LONG *pacpStart, LONG *pacpEnd, TS_TEXTCHANGE *pChange);
+ STDMETHODIMP InsertEmbeddedAtSelection(DWORD dwFlags, IDataObject *pDataObject, LONG *pacpStart, LONG *pacpEnd, TS_TEXTCHANGE *pChange);
+ STDMETHODIMP RequestSupportedAttrs(DWORD dwFlags, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs);
+ STDMETHODIMP RequestAttrsAtPosition(LONG acpPos, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags);
+ STDMETHODIMP RequestAttrsTransitioningAtPosition(LONG acpPos, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags);
+ STDMETHODIMP FindNextAttrTransition(LONG acpStart, LONG acpHalt, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags, LONG *pacpNext, BOOL *pfFound, LONG *plFoundOffset);
+ STDMETHODIMP RetrieveRequestedAttrs(ULONG ulCount, TS_ATTRVAL *paAttrVals, ULONG *pcFetched);
+ STDMETHODIMP GetEndACP(LONG *pacp);
+ STDMETHODIMP GetActiveView(TsViewCookie *pvcView);
+ STDMETHODIMP GetACPFromPoint(TsViewCookie vcView, const POINT *ptScreen, DWORD dwFlags, LONG *pacp);
+ STDMETHODIMP GetTextExt(TsViewCookie vcView, LONG acpStart, LONG acpEnd, RECT *prc, BOOL *pfClipped);
+ STDMETHODIMP GetScreenExt(TsViewCookie vcView, RECT *prc);
+ STDMETHODIMP GetWnd(TsViewCookie vcView, HWND *phwnd);
+
+ //ITfOwnerCompositionSink
+ STDMETHODIMP OnStartComposition(ITfCompositionView *pComposition, BOOL *pfOk);
+ STDMETHODIMP OnUpdateComposition(ITfCompositionView *pComposition, ITfRange *pRangeNew);
+ STDMETHODIMP OnEndComposition(ITfCompositionView *pComposition);
+
+ void Initialize();
+ void Finalize();
+
+ TSF_Text_Store();
+ ~TSF_Text_Store();
+
+ private:
+ ULONG my_Reference_Count;
+ CComPtr my_Document_Manager;
+ CComPtr my_Context;
+ DWORD my_Edit_Cookie;
+ CComPtr my_Sink;
+ DWORD my_Sink_Mask;
+ DWORD my_Lock;
+ DWORD my_Lock_Queued;
+ CComPtr my_Composition_View;
+ TS_SELECTION_ACP my_Composition_Selection;
+ };
+
+ TSF();
+
+ static bool COM_Initialized;
+
+ static CComPtr Thread_Manager;
+ static TfClientId Client_Id;
+ static TSF_Text_Store *Text_Store;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/include/Video_Mode.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/include/Video_Mode.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,30 @@
+#ifndef VIDEO_MODE_HPP
+#define VIDEO_MODE_HPP
+
+#include
+
+class Video_Mode
+{
+public:
+ Video_Mode();
+ Video_Mode(unsigned int The_Width, unsigned int The_Height, unsigned int The_Bits_Per_Pixel);
+
+ static Video_Mode Get_Desktop_Mode();
+
+ static std::size_t Get_Mode_Count();
+ static Video_Mode Get_Mode(std::size_t Index);
+
+ bool Is_Valid() const;
+
+ bool operator==(const Video_Mode &Mode) const;
+ bool operator!=(const Video_Mode &Mode) const;
+
+ unsigned int Width;
+ unsigned int Height;
+ unsigned int Bits_Per_Pixel;
+
+private:
+ static void Initialize_Modes();
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/include/Window.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/include/Window.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,59 @@
+#ifndef WINDOW_HPP
+#define WINDOW_HPP
+
+#include
+
+#define WIN32_LEAN_AND_MEAN
+#include
+
+#include "Video_Mode.hpp"
+#include "Window_Listener.hpp"
+#include "TSF.hpp"
+
+class Window
+{
+public:
+ Window();
+ ~Window();
+
+ void Initialize(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen);
+ void Finalize();
+
+ void Set_Listener(Window_Listener *Listener);
+
+ void Show();
+ void Hide();
+
+ void Handle_Events();
+ void Display();
+
+ void Show_Cursor();
+ void Hide_Cursor();
+
+private:
+ static const wchar_t *Window_Class_Name;
+
+ void Register_Class();
+ void Unregister_Class();
+
+ void Create_Window(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen);
+ void Destroy_Window();
+
+ void Create_Context(const Video_Mode &Mode);
+ void Destroy_Context();
+
+ void Switch_To_Fullscreen(const Video_Mode &Mode);
+
+ LRESULT Handle_Message(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam);
+ static LRESULT CALLBACK Window_Procedure(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam);
+
+ HWND my_Handle;
+ Video_Mode my_Video_Mode;
+ bool my_Fullscreen;
+ HDC my_Device_Context;
+ HGLRC my_GL_Context;
+ bool my_Class_Registered;
+ Window_Listener *my_Listener;
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/include/Window_Listener.hpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/include/Window_Listener.hpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,14 @@
+#ifndef WINDOW_LISTENER_HPP
+#define WINDOW_LISTENER_HPP
+
+class Window_Listener
+{
+public:
+ virtual void On_Close(){}
+ virtual void On_Key_Down(int Key){}
+ virtual void On_Key_Up(int Key){}
+ virtual void On_Char(unsigned int Char){}
+ virtual void On_Resized(unsigned int Width, unsigned int Height){}
+};
+
+#endif
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/src/App.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/src/App.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,105 @@
+#include "App.hpp"
+#include "TSF.hpp"
+#include
+#include
+
+#pragma comment(lib, "glu32.lib")
+
+GLfloat Rotation = 0.0f;
+
+App::App() : my_Done(false)
+{
+ TSF::Initialize();
+}
+
+App::~App()
+{
+ Finalize();
+ TSF::Finalize();
+}
+
+void App::Initialize()
+{
+ Finalize();
+
+ my_Window.Initialize(L"GLTSF", Video_Mode(Width, Height, Bits_Per_Pixel), Fullscreen);
+ my_Window.Set_Listener(this);
+ my_Window.Show();
+ my_Window.Hide_Cursor();
+}
+
+void App::Finalize()
+{
+ my_Window.Finalize();
+}
+
+void App::Run()
+{
+ Initialize();
+ while (!my_Done)
+ {
+ my_Window.Handle_Events();
+
+ Update();
+ Draw();
+ my_Window.Display();
+ }
+}
+
+void App::On_Close()
+{
+ my_Done = true;
+ my_Window.Hide();
+}
+
+void App::On_Key_Down(int Key)
+{
+ switch (Key)
+ {
+ case VK_ESCAPE:
+ On_Close();
+ break;
+ }
+}
+
+void App::On_Key_Up(int Key)
+{
+
+}
+
+void App::On_Char(unsigned int Char)
+{
+ printf("Char: U+%04X\n", Char);
+}
+
+void App::On_Resized(unsigned int Width, unsigned int Height)
+{
+ glViewport(0, 0, Width, Height);
+ glMatrixMode(GL_PROJECTION);
+ glLoadIdentity();
+
+ glMatrixMode(GL_MODELVIEW);
+ glLoadIdentity();
+}
+
+void App::Update()
+{
+ Rotation += 0.2f;
+}
+
+void App::Draw()
+{
+ glClear(GL_COLOR_BUFFER_BIT);
+
+ glLoadIdentity();
+ glRotatef(Rotation, 0.0f, 0.0f, -1.0f);
+
+ glBegin(GL_TRIANGLES);
+ glColor3f(0.7f, 0.0f, 0.0f);
+ glVertex3f(0.0f, 0.5f, 0.0f);
+ glColor3f(0.0f, 0.7f, 0.0f);
+ glVertex3f(-0.5f, -0.5f, 0.0f);
+ glColor3f(0.0f, 0.0f, 0.7f);
+ glVertex3f(0.5f, -0.5f, 0.0f);
+ glEnd();
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/src/Main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/src/Main.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,24 @@
+#include "App.hpp"
+#include
+
+int main(int argc, char *argv[])
+{
+ int Result = EXIT_SUCCESS;
+ try
+ {
+ App theApp;
+ theApp.Run();
+ }
+ catch (const std::exception& e)
+ {
+ printf("Error: %s\n", e.what());
+ Result = EXIT_FAILURE;
+ }
+ catch (...)
+ {
+ printf("Unhandled exception\n");
+ Result = EXIT_FAILURE;
+ }
+ system("PAUSE");
+ return Result;
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/src/TSF.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/src/TSF.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,360 @@
+#include "TSF.hpp"
+#include
+
+bool TSF::COM_Initialized = false;
+CComPtr TSF::Thread_Manager;
+TfClientId TSF::Client_Id;
+TSF::TSF_Text_Store *TSF::Text_Store = NULL;
+
+void TSF::Initialize()
+{
+ if (!COM_Initialized)
+ {
+ HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
+ if (S_OK != hr && S_FALSE != hr)
+ throw std::runtime_error("Failed to initialize COM");
+
+ COM_Initialized = true;
+ }
+ if (!Thread_Manager)
+ {
+ if (FAILED(CoCreateInstance(CLSID_TF_ThreadMgr, NULL, CLSCTX_INPROC_SERVER, IID_ITfThreadMgr, reinterpret_cast(&Thread_Manager))))
+ throw std::runtime_error("Failed to create ITfThreadMgr instance");
+
+ if (FAILED(Thread_Manager->Activate(&Client_Id)))
+ throw std::runtime_error("ITfThreadMgr::Activate failed");
+
+ Text_Store = new TSF_Text_Store;
+ Text_Store->Initialize();
+ }
+}
+
+void TSF::Finalize()
+{
+ if (Thread_Manager)
+ {
+ Thread_Manager->Deactivate();
+ Thread_Manager = NULL;
+ }
+ if (COM_Initialized)
+ {
+ CoUninitialize();
+ COM_Initialized = false;
+ }
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::QueryInterface(REFIID riid, void **ppvObject)
+{
+ *ppvObject = NULL;
+ if (IID_IUnknown == riid || IID_ITextStoreACP == riid)
+ *ppvObject = static_cast(this);
+ else if (IID_ITfContextOwnerCompositionSink == riid)
+ *ppvObject = static_cast(this);
+
+ if (*ppvObject)
+ {
+ AddRef();
+ return S_OK;
+ }
+ return E_NOINTERFACE;
+}
+
+STDMETHODIMP_(ULONG) TSF::TSF_Text_Store::AddRef()
+{
+ return ++my_Reference_Count;
+}
+
+STDMETHODIMP_(ULONG) TSF::TSF_Text_Store::Release()
+{
+ --my_Reference_Count;
+ if (0 != my_Reference_Count)
+ return my_Reference_Count;
+
+ delete this;
+ return 0;
+}
+
+#define CHECK_CONDITION(condition, retval, function, line) \
+ if (!condition) \
+ { \
+ printf("%s:%d: Condition failure: %s\n", function, line, #condition); \
+ }
+
+#define ENSURE(condition, retval) CHECK_CONDITION(condition, retval, __FUNCTION__, __LINE__)
+
+STDMETHODIMP TSF::TSF_Text_Store::AdviseSink(REFIID riid, IUnknown *punk, DWORD dwMask)
+{
+ ENSURE(punk && IID_ITextStoreACP == riid, E_INVALIDARG);
+
+ if (!my_Sink)
+ {
+ HRESULT hr = punk->QueryInterface(&my_Sink);
+ ENSURE(SUCCEEDED(hr) && my_Sink, E_UNEXPECTED);
+ }
+ else
+ {
+ CComPtr Unknown_1, Unknown_2;
+ punk->QueryInterface(&Unknown_1);
+ my_Sink->QueryInterface(&Unknown_2);
+ if (Unknown_1 != Unknown_2)
+ return CONNECT_E_ADVISELIMIT;
+ }
+ my_Sink_Mask = dwMask;
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::UnadviseSink(IUnknown *punk)
+{
+ ENSURE(punk, E_INVALIDARG);
+ ENSURE(my_Sink, CONNECT_E_NOCONNECTION);
+
+ CComPtr Unknown_1, Unknown_2;
+ punk->QueryInterface(&Unknown_1);
+ my_Sink->QueryInterface(&Unknown_2);
+
+ if (Unknown_1 != Unknown_2)
+ return CONNECT_E_NOCONNECTION;
+
+ my_Sink = NULL;
+ my_Sink_Mask = 0;
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::RequestLock(DWORD dwLockFlags, HRESULT *phrSession)
+{
+ ENSURE(my_Sink, E_FAIL);
+ ENSURE(phrSession, E_INVALIDARG);
+ if (my_Lock)
+ {
+ if (TS_LF_READ == (my_Lock & TS_LF_READWRITE)
+ && TS_LF_READWRITE == (dwLockFlags & TS_LF_READWRITE)
+ && !(dwLockFlags & TS_LF_SYNC))
+ {
+ *phrSession = TS_S_ASYNC;
+ my_Lock_Queued = dwLockFlags & (~TS_LF_SYNC);
+ }
+ else
+ {
+ *phrSession = TS_E_SYNCHRONOUS;
+ return E_FAIL;
+ }
+ }
+ else
+ {
+ my_Lock = dwLockFlags & (~TS_LF_SYNC);
+ *phrSession = my_Sink->OnLockGranted(my_Lock);
+ while (my_Lock_Queued)
+ {
+ my_Lock = my_Lock_Queued;
+ my_Lock_Queued = 0;
+ my_Sink->OnLockGranted(my_Lock);
+ }
+ my_Lock = 0;
+ }
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetStatus(TS_STATUS *pdcs)
+{
+ ENSURE(pdcs, E_INVALIDARG);
+ pdcs->dwDynamicFlags = 0;
+ pdcs->dwStaticFlags = TS_SS_NOHIDDENTEXT;
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::QueryInsert(LONG acpTestStart, LONG acpTestEnd, ULONG cch, LONG *pacpResultStart, LONG *pacpResultEnd)
+{
+ ENSURE(0 <= acpTestStart && acpTestStart <= acpTestEnd && pacpResultStart && pacpResultEnd, E_INVALIDARG);
+
+ *pacpResultStart = acpTestStart;
+ *pacpResultEnd = acpTestStart + cch;
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetSelection(ULONG ulIndex, ULONG ulCount, TS_SELECTION_ACP *pSelection, ULONG *pcFetched)
+{
+ ENSURE(TS_LF_READ == (my_Lock && TS_LF_READ), TS_E_NOLOCK);
+ ENSURE(ulCount && pSelection && pcFetched, E_INVALIDARG);
+
+ *pcFetched = 0;
+ ENSURE(TS_DEFAULT_SELECTION == ulIndex || 0 == ulIndex, TS_E_NOSELECTION);
+ if (my_Composition_View)
+ {
+ *pSelection = my_Composition_Selection;
+ }
+ else
+ {
+ //TODO
+ }
+ *pcFetched = 1;
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::SetSelection(ULONG ulCount, const TS_SELECTION_ACP *pSelection)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetText(LONG acpStart, LONG acpEnd, WCHAR *pchPlain, ULONG cchPlainReq, ULONG *pcchPlainRet, TS_RUNINFO *prgRunInfo, ULONG cRunInfoReq, ULONG *pcRunInfoRet, LONG *pacpNext)
+{
+ ENSURE(TS_LF_READ == (my_Lock & TS_LF_READ), TS_E_NOLOCK);
+ ENSURE(pcchPlainRet && (pchPlain || prgRunInfo)
+ && (!cchPlainReq == !pchPlain)
+ && (!cRunInfoReq == !prgRunInfo), E_INVALIDARG);
+ ENSURE(0 <= acpStart && -1 <= acpEnd
+ && (-1 == acpEnd || acpStart <= acpEnd), TS_E_INVALIDPOS);
+
+ *pcchPlainRet = 0;
+ if (pchPlain && cchPlainReq) *pchPlain = 0;
+ if (pcRunInfoRet) *pcRunInfoRet = 0;
+ //TODO
+ return S_OK;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::SetText(DWORD dwFlags, LONG acpStart, LONG acpEnd, const WCHAR *pchText, ULONG cch, TS_TEXTCHANGE *pChange)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetFormattedText(LONG acpStart, LONG acpEnd, IDataObject **ppDataObject)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetEmbedded(LONG acpPos, REFGUID rguidService, REFIID riid, IUnknown **ppunk)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::QueryInsertEmbedded(const GUID *pguidService, const FORMATETC *pFormatEtc, BOOL *pfInsertable)
+{
+ if (!pfInsertable)
+ return E_INVALIDARG;
+
+ //Not supported
+ *pfInsertable = FALSE;
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::InsertEmbedded(DWORD dwFlags, LONG acpStart, LONG acpEnd, IDataObject *pDataObject, TS_TEXTCHANGE *pChange)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::InsertTextAtSelection(DWORD dwFlags, const WCHAR *pchText, ULONG cch, LONG *pacpStart, LONG *pacpEnd, TS_TEXTCHANGE *pChange)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::InsertEmbeddedAtSelection(DWORD dwFlags, IDataObject *pDataObject, LONG *pacpStart, LONG *pacpEnd, TS_TEXTCHANGE *pChange)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::RequestSupportedAttrs(DWORD dwFlags, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::RequestAttrsAtPosition(LONG acpPos, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::RequestAttrsTransitioningAtPosition(LONG acpPos, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::FindNextAttrTransition(LONG acpStart, LONG acpHalt, ULONG cFilterAttrs, const TS_ATTRID *paFilterAttrs, DWORD dwFlags, LONG *pacpNext, BOOL *pfFound, LONG *plFoundOffset)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::RetrieveRequestedAttrs(ULONG ulCount, TS_ATTRVAL *paAttrVals, ULONG *pcFetched)
+{
+ //not needed
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetEndACP(LONG *pacp)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetActiveView(TsViewCookie *pvcView)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetACPFromPoint(TsViewCookie vcView, const POINT *ptScreen, DWORD dwFlags, LONG *pacp)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetTextExt(TsViewCookie vcView, LONG acpStart, LONG acpEnd, RECT *prc, BOOL *pfClipped)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetScreenExt(TsViewCookie vcView, RECT *prc)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::GetWnd(TsViewCookie vcView, HWND *phwnd)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::OnStartComposition(ITfCompositionView *pComposition, BOOL *pfOk)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::OnUpdateComposition(ITfCompositionView *pComposition, ITfRange *pRangeNew)
+{
+ return E_NOTIMPL;
+}
+
+STDMETHODIMP TSF::TSF_Text_Store::OnEndComposition(ITfCompositionView *pComposition)
+{
+ return E_NOTIMPL;
+}
+
+TSF::TSF_Text_Store::TSF_Text_Store() : my_Reference_Count(1),
+ my_Edit_Cookie(0),
+ my_Lock(0),
+ my_Lock_Queued(0)
+{
+
+}
+
+TSF::TSF_Text_Store::~TSF_Text_Store()
+{
+
+}
+
+void TSF::TSF_Text_Store::Initialize()
+{
+ if (FAILED(Thread_Manager->CreateDocumentMgr(&my_Document_Manager)))
+ throw std::runtime_error("Failed to create document manager");
+
+ if (FAILED(my_Document_Manager->CreateContext(Client_Id, 0, static_cast(this), &my_Context, &my_Edit_Cookie)))
+ throw std::runtime_error("Failed to create document context");
+
+ if (FAILED(my_Document_Manager->Push(my_Context)))
+ throw std::runtime_error("Failed to push context");
+}
+
+void TSF::TSF_Text_Store::Finalize()
+{
+
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/src/Video_Mode.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/src/Video_Mode.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,100 @@
+#include "Video_Mode.hpp"
+#include
+#include
+#define WIN32_LEAN_AND_MEAN
+#include
+
+namespace
+{
+
+ typedef std::vector Video_Mode_List;
+ Video_Mode_List Supported_Modes;
+
+ struct Compare_Modes
+ {
+ bool operator()(const Video_Mode &Mode_1, const Video_Mode &Mode_2) const
+ {
+ if (Mode_1.Bits_Per_Pixel > Mode_2.Bits_Per_Pixel)
+ return true;
+ else if (Mode_1.Bits_Per_Pixel < Mode_2.Bits_Per_Pixel)
+ return false;
+ else if (Mode_1.Width > Mode_2.Width)
+ return true;
+ else if (Mode_1.Width < Mode_2.Width)
+ return false;
+ else
+ return Mode_1.Height > Mode_2.Height;
+ }
+ };
+
+}
+
+Video_Mode::Video_Mode() : Width(0),
+ Height(0),
+ Bits_Per_Pixel(0)
+{
+
+}
+
+Video_Mode::Video_Mode(unsigned int The_Width, unsigned int The_Height, unsigned int The_Bits_Per_Pixel)
+ : Width(The_Width),
+ Height(The_Height),
+ Bits_Per_Pixel(The_Bits_Per_Pixel)
+{
+
+}
+
+Video_Mode Video_Mode::Get_Desktop_Mode()
+{
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &Device_Mode);
+ return Video_Mode(Device_Mode.dmPelsWidth, Device_Mode.dmPelsHeight, Device_Mode.dmBitsPerPel);
+}
+
+std::size_t Video_Mode::Get_Mode_Count()
+{
+ Initialize_Modes();
+ return Supported_Modes.size();
+}
+
+Video_Mode Video_Mode::Get_Mode(std::size_t Index)
+{
+ Initialize_Modes();
+ return Supported_Modes[Index];
+}
+
+bool Video_Mode::Is_Valid() const
+{
+ Initialize_Modes();
+ return Supported_Modes.end() != std::find(Supported_Modes.begin(), Supported_Modes.end(), *this);
+}
+
+bool Video_Mode::operator==(const Video_Mode &Mode) const
+{
+ return (Width == Mode.Width
+ && Height == Mode.Height
+ && Bits_Per_Pixel == Mode.Bits_Per_Pixel);
+}
+
+bool Video_Mode::operator!=(const Video_Mode &Mode) const
+{
+ return !(*this == Mode);
+}
+
+void Video_Mode::Initialize_Modes()
+{
+ static bool Initialized = false;
+ if (!Initialized)
+ {
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ for (std::size_t i = 0; 0 != EnumDisplaySettings(NULL, i, &Device_Mode); ++i)
+ {
+ Video_Mode Mode(Device_Mode.dmPelsWidth, Device_Mode.dmPelsHeight, Device_Mode.dmBitsPerPel);
+ if (Supported_Modes.end() == std::find(Supported_Modes.begin(), Supported_Modes.end(), Mode))
+ Supported_Modes.push_back(Mode);
+ }
+ std::sort(Supported_Modes.begin(), Supported_Modes.end(), Compare_Modes());
+ }
+}
diff -r af1d018ebbe6 -r 436183eb30c8 EXCLUDE/GLTSF/src/Window.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/EXCLUDE/GLTSF/src/Window.cpp Sun Jul 18 13:48:23 2010 -0400
@@ -0,0 +1,281 @@
+#include "Window.hpp"
+#include
+
+#pragma comment(lib, "opengl32.lib")
+
+const wchar_t *Window::Window_Class_Name = L"GLTSF";
+
+Window::Window() : my_Handle(0),
+ my_Device_Context(0),
+ my_GL_Context(0),
+ my_Class_Registered(false),
+ my_Listener(0)
+{
+
+}
+
+Window::~Window()
+{
+ Finalize();
+ Show_Cursor();
+}
+
+void Window::Initialize(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen)
+{
+ Finalize();
+
+ my_Video_Mode = Mode;
+ if (!my_Video_Mode.Is_Valid())
+ throw std::runtime_error("Invalid video mode");
+
+ my_Fullscreen = Fullscreen;
+ Register_Class();
+ Create_Window(Title, Mode, Fullscreen);
+}
+
+void Window::Finalize()
+{
+ Destroy_Window();
+ Unregister_Class();
+}
+
+void Window::Set_Listener(Window_Listener *Listener)
+{
+ my_Listener = Listener;
+}
+
+void Window::Register_Class()
+{
+ WNDCLASSEXW Window_Class = {0};
+ Window_Class.cbSize = sizeof(Window_Class);
+ Window_Class.style = 0;
+ Window_Class.lpfnWndProc = &Window::Window_Procedure;
+ Window_Class.cbClsExtra = 0;
+ Window_Class.cbWndExtra = 0;
+ Window_Class.hInstance = GetModuleHandle(NULL);
+ Window_Class.hIcon = NULL;
+ Window_Class.hCursor = NULL;
+ Window_Class.hbrBackground = NULL;
+ Window_Class.lpszMenuName = NULL;
+ Window_Class.lpszClassName = Window_Class_Name;
+ Window_Class.hIconSm = NULL;
+ if (0 == RegisterClassExW(&Window_Class))
+ throw std::runtime_error("Failed to register window class");
+
+ my_Class_Registered = true;
+}
+
+void Window::Unregister_Class()
+{
+ if (my_Class_Registered)
+ {
+ if (0 == UnregisterClassW(Window_Class_Name, GetModuleHandle(NULL)))
+ printf("Warning: Failed to unregister window class\n");
+
+ my_Class_Registered = false;
+ }
+}
+
+void Window::Create_Window(const std::wstring &Title, const Video_Mode &Mode, bool Fullscreen)
+{
+ HDC Screen_DC = GetDC(NULL);
+ int Left = (GetDeviceCaps(Screen_DC, HORZRES) - my_Video_Mode.Width) / 2;
+ int Top = (GetDeviceCaps(Screen_DC, VERTRES) - my_Video_Mode.Height) / 2;
+ int Width = my_Video_Mode.Width;
+ int Height = my_Video_Mode.Height;
+ ReleaseDC(NULL, Screen_DC);
+
+ DWORD Style = WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU;
+ if (!my_Fullscreen)
+ {
+ RECT Rect = {0, 0, Width, Height};
+ AdjustWindowRect(&Rect, Style, false);
+ Width = Rect.right - Rect.left;
+ Height = Rect.bottom - Rect.top;
+ }
+ my_Handle = CreateWindowW(Window_Class_Name, Title.c_str(), Style, Left, Top, Width, Height, NULL, NULL, GetModuleHandle(NULL), this);
+ if (!my_Handle)
+ throw std::runtime_error("Failed to create window");
+
+ if (Fullscreen)
+ Switch_To_Fullscreen(Mode);
+
+ Create_Context(Mode);
+
+ RECT Rect = {0};
+ GetClientRect(my_Handle, &Rect);
+ //TODO: ...
+}
+
+void Window::Destroy_Window()
+{
+ Destroy_Context();
+ if (my_Handle)
+ {
+ DestroyWindow(my_Handle);
+ my_Handle = 0;
+
+ if (my_Fullscreen)
+ ChangeDisplaySettings(NULL, 0);
+ }
+}
+
+void Window::Create_Context(const Video_Mode &Mode)
+{
+ my_Device_Context = GetDC(my_Handle);
+ if (!my_Device_Context)
+ throw std::runtime_error("Failed to get device context");
+
+ PIXELFORMATDESCRIPTOR Pixel_Descriptor = {0};
+ Pixel_Descriptor.nSize = sizeof(Pixel_Descriptor);
+ Pixel_Descriptor.nVersion = 1;
+ Pixel_Descriptor.iLayerType = PFD_MAIN_PLANE;
+ Pixel_Descriptor.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
+ Pixel_Descriptor.iPixelType = PFD_TYPE_RGBA;
+ Pixel_Descriptor.cColorBits = static_cast(Mode.Bits_Per_Pixel);
+ Pixel_Descriptor.cDepthBits = 24;
+ Pixel_Descriptor.cStencilBits = 8;
+ Pixel_Descriptor.cAlphaBits = Mode.Bits_Per_Pixel == 32 ? 8 : 0;
+
+ int Best_Format = ChoosePixelFormat(my_Device_Context, &Pixel_Descriptor);
+ if (0 == Best_Format)
+ throw std::runtime_error("Failed to find suitable pixel format");
+
+ PIXELFORMATDESCRIPTOR Actual_Format = {0};
+ Actual_Format.nSize = sizeof(Actual_Format);
+ Actual_Format.nVersion = 1;
+ DescribePixelFormat(my_Device_Context, Best_Format, sizeof(Actual_Format), &Actual_Format);
+ if (!SetPixelFormat(my_Device_Context, Best_Format, &Actual_Format))
+ throw std::runtime_error("Failed to set device pixel format");
+
+ my_GL_Context = wglCreateContext(my_Device_Context);
+ if (!my_GL_Context)
+ throw std::runtime_error("Failed to create OpenGL context");
+
+ wglMakeCurrent(my_Device_Context, my_GL_Context);
+}
+
+void Window::Destroy_Context()
+{
+ if (my_GL_Context)
+ {
+ wglDeleteContext(my_GL_Context);
+ my_GL_Context = 0;
+ }
+ if (my_Device_Context)
+ {
+ ReleaseDC(my_Handle, my_Device_Context);
+ my_Device_Context = 0;
+ }
+}
+
+void Window::Switch_To_Fullscreen(const Video_Mode &Mode)
+{
+ DEVMODE Device_Mode = {0};
+ Device_Mode.dmSize = sizeof(Device_Mode);
+ Device_Mode.dmPelsWidth = Mode.Width;
+ Device_Mode.dmPelsHeight = Mode.Height;
+ Device_Mode.dmBitsPerPel = Mode.Bits_Per_Pixel;
+ Device_Mode.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT | DM_BITSPERPEL;
+
+ if (DISP_CHANGE_SUCCESSFUL != ChangeDisplaySettings(&Device_Mode, CDS_FULLSCREEN))
+ throw std::runtime_error("Failed to change to fullscreen mode");
+
+ SetWindowLong(my_Handle, GWL_STYLE, WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
+ SetWindowLong(my_Handle, GWL_EXSTYLE, WS_EX_APPWINDOW);
+
+ SetWindowPos(my_Handle, HWND_TOP, 0, 0, Mode.Width, Mode.Height, SWP_FRAMECHANGED);
+}
+
+LRESULT CALLBACK Window::Window_Procedure(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam)
+{
+ switch (Message)
+ {
+ case WM_CREATE:
+ {
+ LONG This = reinterpret_cast(reinterpret_cast(lParam)->lpCreateParams);
+ SetWindowLongPtr(Handle, GWLP_USERDATA, This);
+ return 0;
+ }
+ break;
+ case WM_DESTROY:
+ PostQuitMessage(0);
+ return 0;
+ break;
+ default:
+ {
+ Window* Win = reinterpret_cast(GetWindowLongPtr(Handle, GWLP_USERDATA));
+ if (Win)
+ return Win->Handle_Message(Handle, Message, wParam, lParam);
+ }
+ break;
+ }
+ return DefWindowProcW(Handle, Message, wParam, lParam);
+}
+
+#define Call_Listener(x)\
+ if (my_Listener) my_Listener->x
+
+LRESULT Window::Handle_Message(HWND Handle, UINT Message, WPARAM wParam, LPARAM lParam)
+{
+ switch (Message)
+ {
+ case WM_SIZE:
+ Call_Listener(On_Resized(LOWORD(lParam), HIWORD(lParam)));
+ break;
+ case WM_CLOSE:
+ Call_Listener(On_Close());
+ break;
+ case WM_KEYDOWN:
+ Call_Listener(On_Key_Down(wParam));
+ break;
+ case WM_KEYUP:
+ Call_Listener(On_Key_Up(wParam));
+ break;
+ case WM_CHAR:
+ Call_Listener(On_Char(wParam));
+ break;
+ default:
+ return DefWindowProcW(Handle, Message, wParam, lParam);
+ break;
+ }
+ return 0;
+}
+
+void Window::Show()
+{
+ if (my_Handle)
+ ShowWindow(my_Handle, SW_SHOW);
+}
+
+void Window::Hide()
+{
+ if (my_Handle)
+ ShowWindow(my_Handle, SW_HIDE);
+}
+
+void Window::Handle_Events()
+{
+ MSG Message = {0};
+ while (PeekMessageW(&Message, NULL, 0, 0, PM_REMOVE))
+ {
+ TranslateMessage(&Message);
+ DispatchMessageW(&Message);
+ }
+}
+
+void Window::Display()
+{
+ if (my_Device_Context && my_GL_Context)
+ SwapBuffers(my_Device_Context);
+}
+
+void Window::Show_Cursor()
+{
+ ShowCursor(TRUE);
+}
+
+void Window::Hide_Cursor()
+{
+ ShowCursor(FALSE);
+}
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/automated/automated_VS2008.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/checkkeys/checkkeys_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/graywin/graywin_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/loopwave/loopwave_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testalpha/testalpha_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testdraw2/testdraw2_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testfile/testfile_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testgamma/testgamma_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testgl/testgl_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testgl2/testgl2_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testjoystick/testjoystick_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testoverlay/testoverlay_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testoverlay2/testoverlay2_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testpalette/testpalette_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testplatform/testplatform_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testpower/testpower_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testsprite/testsprite_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testsprite2/testsprite2_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testvidinfo/testvidinfo_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testwin/testwin_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 VisualC/tests/testwm/testwm_VS2005.vcproj
diff -r af1d018ebbe6 -r 436183eb30c8 include/SDL_keyboard.h
diff -r af1d018ebbe6 -r 436183eb30c8 include/SDL_stdinc.h
--- a/include/SDL_stdinc.h Sun Jul 18 10:26:46 2010 -0700
+++ b/include/SDL_stdinc.h Sun Jul 18 13:48:23 2010 -0400
@@ -1,792 +1,795 @@
-/*
- SDL - Simple DirectMedia Layer
- Copyright (C) 1997-2010 Sam Lantinga
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
- Sam Lantinga
- slouken@libsdl.org
-*/
-
-/**
- * \file SDL_stdinc.h
- *
- * This is a general header that includes C language support.
- */
-
-#ifndef _SDL_stdinc_h
-#define _SDL_stdinc_h
-
-#include "SDL_config.h"
-
-
-#ifdef HAVE_SYS_TYPES_H
-#include
-#endif
-#ifdef HAVE_STDIO_H
-#include
-#endif
-#if defined(STDC_HEADERS)
-# include
-# include
-# include
-#else
-# if defined(HAVE_STDLIB_H)
-# include
-# elif defined(HAVE_MALLOC_H)
-# include
-# endif
-# if defined(HAVE_STDDEF_H)
-# include
-# endif
-# if defined(HAVE_STDARG_H)
-# include
-# endif
-#endif
-#ifdef HAVE_STRING_H
-# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
-# include
-# endif
-# include
-#endif
-#ifdef HAVE_STRINGS_H
-# include
-#endif
-#if defined(HAVE_INTTYPES_H)
-# include
-#elif defined(HAVE_STDINT_H)
-# include
-#endif
-#ifdef HAVE_CTYPE_H
-# include
-#endif
-#ifdef HAVE_MATH_H
-# include
-#endif
-#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H)
-# include
-#endif
-
-/**
- * The number of elements in an array.
- */
-#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0]))
-#define SDL_TABLESIZE(table) SDL_arraysize(table)
-
-/**
- * \name Cast operators
- *
- * Use proper C++ casts when compiled as C++ to be compatible with the option
- * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above).
- */
-/*@{*/
-#ifdef __cplusplus
-#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression)
-#define SDL_static_cast(type, expression) static_cast(expression)
-#else
-#define SDL_reinterpret_cast(type, expression) ((type)(expression))
-#define SDL_static_cast(type, expression) ((type)(expression))
-#endif
-/*@}*//*Cast operators*/
-
-/* Define a four character code as a Uint32 */
-#define SDL_FOURCC(A, B, C, D) \
- ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
- (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
- (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
- (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
-
-/**
- * \name Basic data types
- */
-/*@{*/
-
-typedef enum
-{
- SDL_FALSE = 0,
- SDL_TRUE = 1
-} SDL_bool;
-
-/**
- * \brief A signed 8-bit integer type.
- */
-typedef int8_t Sint8;
-/**
- * \brief An unsigned 8-bit integer type.
- */
-typedef uint8_t Uint8;
-/**
- * \brief A signed 16-bit integer type.
- */
-typedef int16_t Sint16;
-/**
- * \brief An unsigned 16-bit integer type.
- */
-typedef uint16_t Uint16;
-/**
- * \brief A signed 32-bit integer type.
- */
-typedef int32_t Sint32;
-/**
- * \brief An unsigned 32-bit integer type.
- */
-typedef uint32_t Uint32;
-
-#ifdef SDL_HAS_64BIT_TYPE
-/**
- * \brief A signed 64-bit integer type.
- * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Sint32!
- */
-typedef int64_t Sint64;
-/**
- * \brief An unsigned 64-bit integer type.
- * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Uint32!
- */
-typedef uint64_t Uint64;
-#else
-/* This is really just a hack to prevent the compiler from complaining */
-typedef Sint32 Sint64;
-typedef Uint32 Uint64;
-#endif
-
-/*@}*//*Basic data types*/
-
-
-#define SDL_COMPILE_TIME_ASSERT(name, x) \
- typedef int SDL_dummy_ ## name[(x) * 2 - 1]
-/** \cond */
-#ifndef DOXYGEN_SHOULD_IGNORE_THIS
-SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
-SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
-SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
-SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
-SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
-SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
-#ifndef __NINTENDODS__ /* TODO: figure out why the following happens:
- include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative
- include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */
-SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
-SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
-#endif
-#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
-/** \endcond */
-
-/* Check to make sure enums are the size of ints, for structure packing.
- For both Watcom C/C++ and Borland C/C++ the compiler option that makes
- enums having the size of an int must be enabled.
- This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11).
-*/
-/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */
-#ifdef __MWERKS__
-#pragma enumsalwaysint on
-#endif
-
-/** \cond */
-#ifndef DOXYGEN_SHOULD_IGNORE_THIS
-#ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */
-typedef enum
-{
- DUMMY_ENUM_VALUE
-} SDL_DUMMY_ENUM;
-
-SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
-#endif
-#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
-/** \endcond */
-
-#include "begin_code.h"
-/* Set up for C function definitions, even when using C++ */
-#ifdef __cplusplus
-/* *INDENT-OFF* */
-extern "C" {
-/* *INDENT-ON* */
-#endif
-
-#ifdef HAVE_MALLOC
-#define SDL_malloc malloc
-#else
-extern DECLSPEC void *SDLCALL SDL_malloc(size_t size);
-#endif
-
-#ifdef HAVE_CALLOC
-#define SDL_calloc calloc
-#else
-extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
-#endif
-
-#ifdef HAVE_REALLOC
-#define SDL_realloc realloc
-#else
-extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size);
-#endif
-
-#ifdef HAVE_FREE
-#define SDL_free free
-#else
-extern DECLSPEC void SDLCALL SDL_free(void *mem);
-#endif
-
-#if defined(HAVE_ALLOCA) && !defined(alloca)
-# if defined(HAVE_ALLOCA_H)
-# include
-# elif defined(__GNUC__)
-# define alloca __builtin_alloca
-# elif defined(_MSC_VER)
-# include
-# define alloca _alloca
-# elif defined(__WATCOMC__)
-# include
-# elif defined(__BORLANDC__)
-# include
-# elif defined(__DMC__)
-# include
-# elif defined(__AIX__)
-#pragma alloca
-# elif defined(__MRC__)
-void *alloca(unsigned);
-# else
-char *alloca();
-# endif
-#endif
-#ifdef HAVE_ALLOCA
-#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
-#define SDL_stack_free(data)
-#else
-#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
-#define SDL_stack_free(data) SDL_free(data)
-#endif
-
-#ifdef HAVE_GETENV
-#define SDL_getenv getenv
-#else
-extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
-#endif
-
-/* SDL_putenv() has moved to SDL_compat. */
-#ifdef HAVE_SETENV
-#define SDL_setenv setenv
-#else
-extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value,
- int overwrite);
-#endif
-
-#ifdef HAVE_QSORT
-#define SDL_qsort qsort
-#else
-extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
- int (*compare) (const void *,
- const void *));
-#endif
-
-#ifdef HAVE_ABS
-#define SDL_abs abs
-#else
-#define SDL_abs(X) ((X) < 0 ? -(X) : (X))
-#endif
-
-#define SDL_min(x, y) (((x) < (y)) ? (x) : (y))
-#define SDL_max(x, y) (((x) > (y)) ? (x) : (y))
-
-#ifdef HAVE_CTYPE_H
-#define SDL_isdigit(X) isdigit(X)
-#define SDL_isspace(X) isspace(X)
-#define SDL_toupper(X) toupper(X)
-#define SDL_tolower(X) tolower(X)
-#else
-#define SDL_isdigit(X) (((X) >= '0') && ((X) <= '9'))
-#define SDL_isspace(X) (((X) == ' ') || ((X) == '\t') || ((X) == '\r') || ((X) == '\n'))
-#define SDL_toupper(X) (((X) >= 'a') && ((X) <= 'z') ? ('A'+((X)-'a')) : (X))
-#define SDL_tolower(X) (((X) >= 'A') && ((X) <= 'Z') ? ('a'+((X)-'A')) : (X))
-#endif
-
-#ifdef HAVE_MEMSET
-#define SDL_memset memset
-#else
-extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len);
-#endif
-#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x)))
-#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x)))
-
-#if defined(__GNUC__) && defined(i386)
-#define SDL_memset4(dst, val, len) \
-do { \
- int u0, u1, u2; \
- __asm__ __volatile__ ( \
- "cld\n\t" \
- "rep ; stosl\n\t" \
- : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
- : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \
- : "memory" ); \
-} while(0)
-#endif
-#ifndef SDL_memset4
-#define SDL_memset4(dst, val, len) \
-do { \
- unsigned _count = (len); \
- unsigned _n = (_count + 3) / 4; \
- Uint32 *_p = SDL_static_cast(Uint32 *, dst); \
- Uint32 _val = (val); \
- if (len == 0) break; \
- switch (_count % 4) { \
- case 0: do { *_p++ = _val; \
- case 3: *_p++ = _val; \
- case 2: *_p++ = _val; \
- case 1: *_p++ = _val; \
- } while ( --_n ); \
- } \
-} while(0)
-#endif
-
-/* We can count on memcpy existing on Mac OS X and being well-tuned. */
-#if defined(__MACH__) && defined(__APPLE__)
-#define SDL_memcpy(dst, src, len) memcpy(dst, src, len)
-#elif defined(__GNUC__) && defined(i386)
-#define SDL_memcpy(dst, src, len) \
-do { \
- int u0, u1, u2; \
- __asm__ __volatile__ ( \
- "cld\n\t" \
- "rep ; movsl\n\t" \
- "testb $2,%b4\n\t" \
- "je 1f\n\t" \
- "movsw\n" \
- "1:\ttestb $1,%b4\n\t" \
- "je 2f\n\t" \
- "movsb\n" \
- "2:" \
- : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
- : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \
- : "memory" ); \
-} while(0)
-#endif
-#ifndef SDL_memcpy
-#ifdef HAVE_MEMCPY
-#define SDL_memcpy memcpy
-#elif defined(HAVE_BCOPY)
-#define SDL_memcpy(d, s, n) bcopy((s), (d), (n))
-#else
-extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src,
- size_t len);
-#endif
-#endif
-
-/* We can count on memcpy existing on Mac OS X and being well-tuned. */
-#if defined(__MACH__) && defined(__APPLE__)
-#define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4)
-#elif defined(__GNUC__) && defined(i386)
-#define SDL_memcpy4(dst, src, len) \
-do { \
- int ecx, edi, esi; \
- __asm__ __volatile__ ( \
- "cld\n\t" \
- "rep ; movsl" \
- : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \
- : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \
- : "memory" ); \
-} while(0)
-#endif
-#ifndef SDL_memcpy4
-#define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2)
-#endif
-
-#if defined(__GNUC__) && defined(i386)
-#define SDL_revcpy(dst, src, len) \
-do { \
- int u0, u1, u2; \
- char *dstp = SDL_static_cast(char *, dst); \
- char *srcp = SDL_static_cast(char *, src); \
- int n = (len); \
- if ( n >= 4 ) { \
- __asm__ __volatile__ ( \
- "std\n\t" \
- "rep ; movsl\n\t" \
- "cld\n\t" \
- : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
- : "0" (n >> 2), \
- "1" (dstp+(n-4)), "2" (srcp+(n-4)) \
- : "memory" ); \
- } \
- switch (n & 3) { \
- case 3: dstp[2] = srcp[2]; \
- case 2: dstp[1] = srcp[1]; \
- case 1: dstp[0] = srcp[0]; \
- break; \
- default: \
- break; \
- } \
-} while(0)
-#endif
-#ifndef SDL_revcpy
-extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
- size_t len);
-#endif
-
-#ifdef HAVE_MEMMOVE
-#define SDL_memmove memmove
-#elif defined(HAVE_BCOPY)
-#define SDL_memmove(d, s, n) bcopy((s), (d), (n))
-#else
-#define SDL_memmove(dst, src, len) \
-do { \
- if ( dst < src ) { \
- SDL_memcpy(dst, src, len); \
- } else { \
- SDL_revcpy(dst, src, len); \
- } \
-} while(0)
-#endif
-
-#ifdef HAVE_MEMCMP
-#define SDL_memcmp memcmp
-#else
-extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2,
- size_t len);
-#endif
-
-#ifdef HAVE_STRLEN
-#define SDL_strlen strlen
-#else
-extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string);
-#endif
-
-#ifdef HAVE_WCSLEN
-#define SDL_wcslen wcslen
-#else
-#if !defined(wchar_t) && defined(__NINTENDODS__)
-#define wchar_t short /* TODO: figure out why libnds doesn't have this */
-#endif
-extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t * string);
-#endif
-
-#ifdef HAVE_STRLCPY
-#define SDL_strlcpy strlcpy
-#else
-extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src,
- size_t maxlen);
-#endif
-
-#ifdef HAVE_STRLCAT
-#define SDL_strlcat strlcat
-#else
-extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src,
- size_t maxlen);
-#endif
-
-#ifdef HAVE_STRDUP
-#define SDL_strdup strdup
-#else
-extern DECLSPEC char *SDLCALL SDL_strdup(const char *string);
-#endif
-
-#ifdef HAVE__STRREV
-#define SDL_strrev _strrev
-#else
-extern DECLSPEC char *SDLCALL SDL_strrev(char *string);
-#endif
-
-#ifdef HAVE__STRUPR
-#define SDL_strupr _strupr
-#else
-extern DECLSPEC char *SDLCALL SDL_strupr(char *string);
-#endif
-
-#ifdef HAVE__STRLWR
-#define SDL_strlwr _strlwr
-#else
-extern DECLSPEC char *SDLCALL SDL_strlwr(char *string);
-#endif
-
-#ifdef HAVE_STRCHR
-#define SDL_strchr strchr
-#elif defined(HAVE_INDEX)
-#define SDL_strchr index
-#else
-extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c);
-#endif
-
-#ifdef HAVE_STRRCHR
-#define SDL_strrchr strrchr
-#elif defined(HAVE_RINDEX)
-#define SDL_strrchr rindex
-#else
-extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c);
-#endif
-
-#ifdef HAVE_STRSTR
-#define SDL_strstr strstr
-#else
-extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack,
- const char *needle);
-#endif
-
-#ifdef HAVE_ITOA
-#define SDL_itoa itoa
-#else
-#define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
-#endif
-
-#ifdef HAVE__LTOA
-#define SDL_ltoa _ltoa
-#else
-extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix);
-#endif
-
-#ifdef HAVE__UITOA
-#define SDL_uitoa _uitoa
-#else
-#define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
-#endif
-
-#ifdef HAVE__ULTOA
-#define SDL_ultoa _ultoa
-#else
-extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *string,
- int radix);
-#endif
-
-#ifdef HAVE_STRTOL
-#define SDL_strtol strtol
-#else
-extern DECLSPEC long SDLCALL SDL_strtol(const char *string, char **endp,
- int base);
-#endif
-
-#ifdef HAVE_STRTOUL
-#define SDL_strtoul strtoul
-#else
-extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *string,
- char **endp, int base);
-#endif
-
-#ifdef SDL_HAS_64BIT_TYPE
-
-#ifdef HAVE__I64TOA
-#define SDL_lltoa _i64toa
-#else
-extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *string,
- int radix);
-#endif
-
-#ifdef HAVE__UI64TOA
-#define SDL_ulltoa _ui64toa
-#else
-extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *string,
- int radix);
-#endif
-
-#ifdef HAVE_STRTOLL
-#define SDL_strtoll strtoll
-#else
-extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *string, char **endp,
- int base);
-#endif
-
-#ifdef HAVE_STRTOULL
-#define SDL_strtoull strtoull
-#else
-extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *string, char **endp,
- int base);
-#endif
-
-#endif /* SDL_HAS_64BIT_TYPE */
-
-#ifdef HAVE_STRTOD
-#define SDL_strtod strtod
-#else
-extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp);
-#endif
-
-#ifdef HAVE_ATOI
-#define SDL_atoi atoi
-#else
-#define SDL_atoi(X) SDL_strtol(X, NULL, 0)
-#endif
-
-#ifdef HAVE_ATOF
-#define SDL_atof atof
-#else
-#define SDL_atof(X) SDL_strtod(X, NULL)
-#endif
-
-#ifdef HAVE_STRCMP
-#define SDL_strcmp strcmp
-#else
-extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
-#endif
-
-#ifdef HAVE_STRNCMP
-#define SDL_strncmp strncmp
-#else
-extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2,
- size_t maxlen);
-#endif
-
-#ifdef HAVE_STRCASECMP
-#define SDL_strcasecmp strcasecmp
-#elif defined(HAVE__STRICMP)
-#define SDL_strcasecmp _stricmp
-#else
-extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1,
- const char *str2);
-#endif
-
-#ifdef HAVE_STRNCASECMP
-#define SDL_strncasecmp strncasecmp
-#elif defined(HAVE__STRNICMP)
-#define SDL_strncasecmp _strnicmp
-#else
-extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1,
- const char *str2, size_t maxlen);
-#endif
-
-#ifdef HAVE_SSCANF
-#define SDL_sscanf sscanf
-#else
-extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt,
- ...);
-#endif
-
-#ifdef HAVE_SNPRINTF
-#define SDL_snprintf snprintf
-#else
-extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen,
- const char *fmt, ...);
-#endif
-
-#ifdef HAVE_VSNPRINTF
-#define SDL_vsnprintf vsnprintf
-#else
-extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen,
- const char *fmt, va_list ap);
-#endif
-
-#ifndef HAVE_M_PI
-#define M_PI 3.14159265358979323846264338327950288 /* pi */
-#endif
-
-#ifdef HAVE_CEIL
-#define SDL_ceil ceil
-#else
-#define SDL_ceil(x) ((double)(int)((x)+0.5))
-#endif
-
-#ifdef HAVE_COPYSIGN
-#define SDL_copysign copysign
-#else
-extern DECLSPEC double SDLCALL SDL_copysign(double x, double y);
-#endif
-
-#ifdef HAVE_COS
-#define SDL_cos cos
-#else
-extern DECLSPEC double SDLCALL SDL_cos(double x);
-#endif
-
-#ifdef HAVE_COSF
-#define SDL_cosf cosf
-#else
-#define SDL_cosf(x) (float)SDL_cos((double)x)
-#endif
-
-#ifdef HAVE_FABS
-#define SDL_fabs fabs
-#else
-extern DECLSPEC double SDLCALL SDL_fabs(double x);
-#endif
-
-#ifdef HAVE_FLOOR
-#define SDL_floor floor
-#else
-extern DECLSPEC double SDLCALL SDL_floor(double x);
-#endif
-
-#ifdef HAVE_LOG
-#define SDL_log log
-#else
-extern DECLSPEC double SDLCALL SDL_log(double x);
-#endif
-
-#ifdef HAVE_POW
-#define SDL_pow pow
-#else
-extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
-#endif
-
-#ifdef HAVE_SCALBN
-#define SDL_scalbn scalbn
-#else
-extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);
-#endif
-
-#ifdef HAVE_SIN
-#define SDL_sin sin
-#else
-extern DECLSPEC double SDLCALL SDL_sin(double x);
-#endif
-
-#ifdef HAVE_SINF
-#define SDL_sinf sinf
-#else
-#define SDL_sinf(x) (float)SDL_sin((double)x)
-#endif
-
-#ifdef HAVE_SQRT
-#define SDL_sqrt sqrt
-#else
-extern DECLSPEC double SDLCALL SDL_sqrt(double x);
-#endif
-
-/* The SDL implementation of iconv() returns these error codes */
-#define SDL_ICONV_ERROR (size_t)-1
-#define SDL_ICONV_E2BIG (size_t)-2
-#define SDL_ICONV_EILSEQ (size_t)-3
-#define SDL_ICONV_EINVAL (size_t)-4
-
-#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H)
-#define SDL_iconv_t iconv_t
-#define SDL_iconv_open iconv_open
-#define SDL_iconv_close iconv_close
-#else
-typedef struct _SDL_iconv_t *SDL_iconv_t;
-extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode,
- const char *fromcode);
-extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd);
-#endif
-extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf,
- size_t * inbytesleft, char **outbuf,
- size_t * outbytesleft);
-/**
- * This function converts a string between encodings in one pass, returning a
- * string that must be freed with SDL_free() or NULL on error.
- */
-extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode,
- const char *fromcode,
- const char *inbuf,
- size_t inbytesleft);
-#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1)
-#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1)
-#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1)
-
-/* Ends C function definitions when using C++ */
-#ifdef __cplusplus
-/* *INDENT-OFF* */
-}
-/* *INDENT-ON* */
-#endif
-#include "close_code.h"
-
-#endif /* _SDL_stdinc_h */
-
-/* vi: set ts=4 sw=4 expandtab: */
+/*
+ SDL - Simple DirectMedia Layer
+ Copyright (C) 1997-2010 Sam Lantinga
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+ Sam Lantinga
+ slouken@libsdl.org
+*/
+
+/**
+ * \file SDL_stdinc.h
+ *
+ * This is a general header that includes C language support.
+ */
+
+#ifndef _SDL_stdinc_h
+#define _SDL_stdinc_h
+
+#include "SDL_config.h"
+
+
+#ifdef HAVE_SYS_TYPES_H
+#include
+#endif
+#ifdef HAVE_STDIO_H
+#include
+#endif
+#if defined(STDC_HEADERS)
+# include
+# include
+# include
+#else
+# if defined(HAVE_STDLIB_H)
+# include
+# elif defined(HAVE_MALLOC_H)
+# include
+# endif
+# if defined(HAVE_STDDEF_H)
+# include
+# endif
+# if defined(HAVE_STDARG_H)
+# include
+# endif
+#endif
+#ifdef HAVE_STRING_H
+# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
+# include
+# endif
+# include
+#endif
+#ifdef HAVE_STRINGS_H
+# include
+#endif
+#if defined(HAVE_INTTYPES_H)
+# include
+#elif defined(HAVE_STDINT_H)
+# include
+#endif
+#ifdef HAVE_CTYPE_H
+# include
+#endif
+#ifdef HAVE_MATH_H
+# include
+#endif
+#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H)
+# include
+#endif
+
+/**
+ * The number of elements in an array.
+ */
+#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0]))
+#define SDL_TABLESIZE(table) SDL_arraysize(table)
+
+/**
+ * \name Cast operators
+ *
+ * Use proper C++ casts when compiled as C++ to be compatible with the option
+ * -Wold-style-cast of GCC (and -Werror=old-style-cast in GCC 4.2 and above).
+ */
+/*@{*/
+#ifdef __cplusplus
+#define SDL_reinterpret_cast(type, expression) reinterpret_cast(expression)
+#define SDL_static_cast(type, expression) static_cast(expression)
+#else
+#define SDL_reinterpret_cast(type, expression) ((type)(expression))
+#define SDL_static_cast(type, expression) ((type)(expression))
+#endif
+/*@}*//*Cast operators*/
+
+/* Define a four character code as a Uint32 */
+#define SDL_FOURCC(A, B, C, D) \
+ ((SDL_static_cast(Uint32, SDL_static_cast(Uint8, (A))) << 0) | \
+ (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (B))) << 8) | \
+ (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (C))) << 16) | \
+ (SDL_static_cast(Uint32, SDL_static_cast(Uint8, (D))) << 24))
+
+/**
+ * \name Basic data types
+ */
+/*@{*/
+
+typedef enum
+{
+ SDL_FALSE = 0,
+ SDL_TRUE = 1
+} SDL_bool;
+
+/**
+ * \brief A signed 8-bit integer type.
+ */
+typedef int8_t Sint8;
+/**
+ * \brief An unsigned 8-bit integer type.
+ */
+typedef uint8_t Uint8;
+/**
+ * \brief A signed 16-bit integer type.
+ */
+typedef int16_t Sint16;
+/**
+ * \brief An unsigned 16-bit integer type.
+ */
+typedef uint16_t Uint16;
+/**
+ * \brief A signed 32-bit integer type.
+ */
+typedef int32_t Sint32;
+/**
+ * \brief An unsigned 32-bit integer type.
+ */
+typedef uint32_t Uint32;
+
+#ifdef SDL_HAS_64BIT_TYPE
+/**
+ * \brief A signed 64-bit integer type.
+ * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Sint32!
+ */
+typedef int64_t Sint64;
+/**
+ * \brief An unsigned 64-bit integer type.
+ * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Uint32!
+ */
+typedef uint64_t Uint64;
+#else
+/* This is really just a hack to prevent the compiler from complaining */
+typedef Sint32 Sint64;
+typedef Uint32 Uint64;
+#endif
+
+/*@}*//*Basic data types*/
+
+
+#define SDL_COMPILE_TIME_ASSERT(name, x) \
+ typedef int SDL_dummy_ ## name[(x) * 2 - 1]
+/** \cond */
+#ifndef DOXYGEN_SHOULD_IGNORE_THIS
+SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
+SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
+SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
+SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
+SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
+SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
+#ifndef __NINTENDODS__ /* TODO: figure out why the following happens:
+ include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative
+ include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */
+SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
+SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
+#endif
+#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
+/** \endcond */
+
+/* Check to make sure enums are the size of ints, for structure packing.
+ For both Watcom C/C++ and Borland C/C++ the compiler option that makes
+ enums having the size of an int must be enabled.
+ This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11).
+*/
+/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */
+#ifdef __MWERKS__
+#pragma enumsalwaysint on
+#endif
+
+/** \cond */
+#ifndef DOXYGEN_SHOULD_IGNORE_THIS
+#ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */
+typedef enum
+{
+ DUMMY_ENUM_VALUE
+} SDL_DUMMY_ENUM;
+
+SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
+#endif
+#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
+/** \endcond */
+
+#include "begin_code.h"
+/* Set up for C function definitions, even when using C++ */
+#ifdef __cplusplus
+/* *INDENT-OFF* */
+extern "C" {
+/* *INDENT-ON* */
+#endif
+
+#ifdef HAVE_MALLOC
+#define SDL_malloc malloc
+#else
+extern DECLSPEC void *SDLCALL SDL_malloc(size_t size);
+#endif
+
+#ifdef HAVE_CALLOC
+#define SDL_calloc calloc
+#else
+extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
+#endif
+
+#ifdef HAVE_REALLOC
+#define SDL_realloc realloc
+#else
+extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size);
+#endif
+
+#ifdef HAVE_FREE
+#define SDL_free free
+#else
+extern DECLSPEC void SDLCALL SDL_free(void *mem);
+#endif
+
+#if defined(HAVE_ALLOCA) && !defined(alloca)
+# if defined(HAVE_ALLOCA_H)
+# include
+# elif defined(__GNUC__)
+# define alloca __builtin_alloca
+# elif defined(_MSC_VER)
+# include
+# define alloca _alloca
+# elif defined(__WATCOMC__)
+# include
+# elif defined(__BORLANDC__)
+# include
+# elif defined(__DMC__)
+# include
+# elif defined(__AIX__)
+#pragma alloca
+# elif defined(__MRC__)
+void *alloca(unsigned);
+# else
+char *alloca();
+# endif
+#endif
+#ifdef HAVE_ALLOCA
+#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
+#define SDL_stack_free(data)
+#else
+#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
+#define SDL_stack_free(data) SDL_free(data)
+#endif
+
+#ifdef HAVE_GETENV
+#define SDL_getenv getenv
+#else
+extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
+#endif
+
+/* SDL_putenv() has moved to SDL_compat. */
+#ifdef HAVE_SETENV
+#define SDL_setenv setenv
+#else
+extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value,
+ int overwrite);
+#endif
+
+#ifdef HAVE_QSORT
+#define SDL_qsort qsort
+#else
+extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
+ int (*compare) (const void *,
+ const void *));
+#endif
+
+#ifdef HAVE_ABS
+#define SDL_abs abs
+#else
+#define SDL_abs(X) ((X) < 0 ? -(X) : (X))
+#endif
+
+#define SDL_min(x, y) (((x) < (y)) ? (x) : (y))
+#define SDL_max(x, y) (((x) > (y)) ? (x) : (y))
+
+#ifdef HAVE_CTYPE_H
+#define SDL_isdigit(X) isdigit(X)
+#define SDL_isspace(X) isspace(X)
+#define SDL_toupper(X) toupper(X)
+#define SDL_tolower(X) tolower(X)
+#else
+#define SDL_isdigit(X) (((X) >= '0') && ((X) <= '9'))
+#define SDL_isspace(X) (((X) == ' ') || ((X) == '\t') || ((X) == '\r') || ((X) == '\n'))
+#define SDL_toupper(X) (((X) >= 'a') && ((X) <= 'z') ? ('A'+((X)-'a')) : (X))
+#define SDL_tolower(X) (((X) >= 'A') && ((X) <= 'Z') ? ('a'+((X)-'A')) : (X))
+#endif
+
+#ifdef HAVE_MEMSET
+#define SDL_memset memset
+#else
+extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len);
+#endif
+#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x)))
+#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x)))
+
+#if defined(__GNUC__) && defined(i386)
+#define SDL_memset4(dst, val, len) \
+do { \
+ int u0, u1, u2; \
+ __asm__ __volatile__ ( \
+ "cld\n\t" \
+ "rep ; stosl\n\t" \
+ : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
+ : "0" (dst), "1" (val), "2" (SDL_static_cast(Uint32, len)) \
+ : "memory" ); \
+} while(0)
+#endif
+#ifndef SDL_memset4
+#define SDL_memset4(dst, val, len) \
+do { \
+ unsigned _count = (len); \
+ unsigned _n = (_count + 3) / 4; \
+ Uint32 *_p = SDL_static_cast(Uint32 *, dst); \
+ Uint32 _val = (val); \
+ if (len == 0) break; \
+ switch (_count % 4) { \
+ case 0: do { *_p++ = _val; \
+ case 3: *_p++ = _val; \
+ case 2: *_p++ = _val; \
+ case 1: *_p++ = _val; \
+ } while ( --_n ); \
+ } \
+} while(0)
+#endif
+
+/* We can count on memcpy existing on Mac OS X and being well-tuned. */
+#if defined(__MACH__) && defined(__APPLE__)
+#define SDL_memcpy(dst, src, len) memcpy(dst, src, len)
+#elif defined(__GNUC__) && defined(i386)
+#define SDL_memcpy(dst, src, len) \
+do { \
+ int u0, u1, u2; \
+ __asm__ __volatile__ ( \
+ "cld\n\t" \
+ "rep ; movsl\n\t" \
+ "testb $2,%b4\n\t" \
+ "je 1f\n\t" \
+ "movsw\n" \
+ "1:\ttestb $1,%b4\n\t" \
+ "je 2f\n\t" \
+ "movsb\n" \
+ "2:" \
+ : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
+ : "0" (SDL_static_cast(unsigned, len)/4), "q" (len), "1" (dst),"2" (src) \
+ : "memory" ); \
+} while(0)
+#endif
+#ifndef SDL_memcpy
+#ifdef HAVE_MEMCPY
+#define SDL_memcpy memcpy
+#elif defined(HAVE_BCOPY)
+#define SDL_memcpy(d, s, n) bcopy((s), (d), (n))
+#else
+extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src,
+ size_t len);
+#endif
+#endif
+
+/* We can count on memcpy existing on Mac OS X and being well-tuned. */
+#if defined(__MACH__) && defined(__APPLE__)
+#define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4)
+#elif defined(__GNUC__) && defined(i386)
+#define SDL_memcpy4(dst, src, len) \
+do { \
+ int ecx, edi, esi; \
+ __asm__ __volatile__ ( \
+ "cld\n\t" \
+ "rep ; movsl" \
+ : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \
+ : "0" (SDL_static_cast(unsigned, len)), "1" (dst), "2" (src) \
+ : "memory" ); \
+} while(0)
+#endif
+#ifndef SDL_memcpy4
+#define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2)
+#endif
+
+#if defined(__GNUC__) && defined(i386)
+#define SDL_revcpy(dst, src, len) \
+do { \
+ int u0, u1, u2; \
+ char *dstp = SDL_static_cast(char *, dst); \
+ char *srcp = SDL_static_cast(char *, src); \
+ int n = (len); \
+ if ( n >= 4 ) { \
+ __asm__ __volatile__ ( \
+ "std\n\t" \
+ "rep ; movsl\n\t" \
+ "cld\n\t" \
+ : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
+ : "0" (n >> 2), \
+ "1" (dstp+(n-4)), "2" (srcp+(n-4)) \
+ : "memory" ); \
+ } \
+ switch (n & 3) { \
+ case 3: dstp[2] = srcp[2]; \
+ case 2: dstp[1] = srcp[1]; \
+ case 1: dstp[0] = srcp[0]; \
+ break; \
+ default: \
+ break; \
+ } \
+} while(0)
+#endif
+#ifndef SDL_revcpy
+extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
+ size_t len);
+#endif
+
+#ifdef HAVE_MEMMOVE
+#define SDL_memmove memmove
+#elif defined(HAVE_BCOPY)
+#define SDL_memmove(d, s, n) bcopy((s), (d), (n))
+#else
+#define SDL_memmove(dst, src, len) \
+do { \
+ if ( dst < src ) { \
+ SDL_memcpy(dst, src, len); \
+ } else { \
+ SDL_revcpy(dst, src, len); \
+ } \
+} while(0)
+#endif
+
+#ifdef HAVE_MEMCMP
+#define SDL_memcmp memcmp
+#else
+extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2,
+ size_t len);
+#endif
+
+#ifdef HAVE_STRLEN
+#define SDL_strlen strlen
+#else
+extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string);
+#endif
+
+#ifdef HAVE_WCSLEN
+#define SDL_wcslen wcslen
+#else
+#if !defined(wchar_t) && defined(__NINTENDODS__)
+#define wchar_t short /* TODO: figure out why libnds doesn't have this */
+#endif
+extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t * string);
+#endif
+
+#ifdef HAVE_STRLCPY
+#define SDL_strlcpy strlcpy
+#else
+extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src,
+ size_t maxlen);
+#endif
+
+extern DECLSPEC size_t SDLCALL SDL_utf8strlcpy(char *dst, const char *src,
+ size_t dst_bytes);
+
+#ifdef HAVE_STRLCAT
+#define SDL_strlcat strlcat
+#else
+extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src,
+ size_t maxlen);
+#endif
+
+#ifdef HAVE_STRDUP
+#define SDL_strdup strdup
+#else
+extern DECLSPEC char *SDLCALL SDL_strdup(const char *string);
+#endif
+
+#ifdef HAVE__STRREV
+#define SDL_strrev _strrev
+#else
+extern DECLSPEC char *SDLCALL SDL_strrev(char *string);
+#endif
+
+#ifdef HAVE__STRUPR
+#define SDL_strupr _strupr
+#else
+extern DECLSPEC char *SDLCALL SDL_strupr(char *string);
+#endif
+
+#ifdef HAVE__STRLWR
+#define SDL_strlwr _strlwr
+#else
+extern DECLSPEC char *SDLCALL SDL_strlwr(char *string);
+#endif
+
+#ifdef HAVE_STRCHR
+#define SDL_strchr strchr
+#elif defined(HAVE_INDEX)
+#define SDL_strchr index
+#else
+extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c);
+#endif
+
+#ifdef HAVE_STRRCHR
+#define SDL_strrchr strrchr
+#elif defined(HAVE_RINDEX)
+#define SDL_strrchr rindex
+#else
+extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c);
+#endif
+
+#ifdef HAVE_STRSTR
+#define SDL_strstr strstr
+#else
+extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack,
+ const char *needle);
+#endif
+
+#ifdef HAVE_ITOA
+#define SDL_itoa itoa
+#else
+#define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
+#endif
+
+#ifdef HAVE__LTOA
+#define SDL_ltoa _ltoa
+#else
+extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix);
+#endif
+
+#ifdef HAVE__UITOA
+#define SDL_uitoa _uitoa
+#else
+#define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
+#endif
+
+#ifdef HAVE__ULTOA
+#define SDL_ultoa _ultoa
+#else
+extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *string,
+ int radix);
+#endif
+
+#ifdef HAVE_STRTOL
+#define SDL_strtol strtol
+#else
+extern DECLSPEC long SDLCALL SDL_strtol(const char *string, char **endp,
+ int base);
+#endif
+
+#ifdef HAVE_STRTOUL
+#define SDL_strtoul strtoul
+#else
+extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *string,
+ char **endp, int base);
+#endif
+
+#ifdef SDL_HAS_64BIT_TYPE
+
+#ifdef HAVE__I64TOA
+#define SDL_lltoa _i64toa
+#else
+extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *string,
+ int radix);
+#endif
+
+#ifdef HAVE__UI64TOA
+#define SDL_ulltoa _ui64toa
+#else
+extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *string,
+ int radix);
+#endif
+
+#ifdef HAVE_STRTOLL
+#define SDL_strtoll strtoll
+#else
+extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *string, char **endp,
+ int base);
+#endif
+
+#ifdef HAVE_STRTOULL
+#define SDL_strtoull strtoull
+#else
+extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *string, char **endp,
+ int base);
+#endif
+
+#endif /* SDL_HAS_64BIT_TYPE */
+
+#ifdef HAVE_STRTOD
+#define SDL_strtod strtod
+#else
+extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp);
+#endif
+
+#ifdef HAVE_ATOI
+#define SDL_atoi atoi
+#else
+#define SDL_atoi(X) SDL_strtol(X, NULL, 0)
+#endif
+
+#ifdef HAVE_ATOF
+#define SDL_atof atof
+#else
+#define SDL_atof(X) SDL_strtod(X, NULL)
+#endif
+
+#ifdef HAVE_STRCMP
+#define SDL_strcmp strcmp
+#else
+extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
+#endif
+
+#ifdef HAVE_STRNCMP
+#define SDL_strncmp strncmp
+#else
+extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2,
+ size_t maxlen);
+#endif
+
+#ifdef HAVE_STRCASECMP
+#define SDL_strcasecmp strcasecmp
+#elif defined(HAVE__STRICMP)
+#define SDL_strcasecmp _stricmp
+#else
+extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1,
+ const char *str2);
+#endif
+
+#ifdef HAVE_STRNCASECMP
+#define SDL_strncasecmp strncasecmp
+#elif defined(HAVE__STRNICMP)
+#define SDL_strncasecmp _strnicmp
+#else
+extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1,
+ const char *str2, size_t maxlen);
+#endif
+
+#ifdef HAVE_SSCANF
+#define SDL_sscanf sscanf
+#else
+extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt,
+ ...);
+#endif
+
+#ifdef HAVE_SNPRINTF
+#define SDL_snprintf snprintf
+#else
+extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen,
+ const char *fmt, ...);
+#endif
+
+#ifdef HAVE_VSNPRINTF
+#define SDL_vsnprintf vsnprintf
+#else
+extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen,
+ const char *fmt, va_list ap);
+#endif
+
+#ifndef HAVE_M_PI
+#define M_PI 3.14159265358979323846264338327950288 /* pi */
+#endif
+
+#ifdef HAVE_CEIL
+#define SDL_ceil ceil
+#else
+#define SDL_ceil(x) ((double)(int)((x)+0.5))
+#endif
+
+#ifdef HAVE_COPYSIGN
+#define SDL_copysign copysign
+#else
+extern DECLSPEC double SDLCALL SDL_copysign(double x, double y);
+#endif
+
+#ifdef HAVE_COS
+#define SDL_cos cos
+#else
+extern DECLSPEC double SDLCALL SDL_cos(double x);
+#endif
+
+#ifdef HAVE_COSF
+#define SDL_cosf cosf
+#else
+#define SDL_cosf(x) (float)SDL_cos((double)x)
+#endif
+
+#ifdef HAVE_FABS
+#define SDL_fabs fabs
+#else
+extern DECLSPEC double SDLCALL SDL_fabs(double x);
+#endif
+
+#ifdef HAVE_FLOOR
+#define SDL_floor floor
+#else
+extern DECLSPEC double SDLCALL SDL_floor(double x);
+#endif
+
+#ifdef HAVE_LOG
+#define SDL_log log
+#else
+extern DECLSPEC double SDLCALL SDL_log(double x);
+#endif
+
+#ifdef HAVE_POW
+#define SDL_pow pow
+#else
+extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
+#endif
+
+#ifdef HAVE_SCALBN
+#define SDL_scalbn scalbn
+#else
+extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);
+#endif
+
+#ifdef HAVE_SIN
+#define SDL_sin sin
+#else
+extern DECLSPEC double SDLCALL SDL_sin(double x);
+#endif
+
+#ifdef HAVE_SINF
+#define SDL_sinf sinf
+#else
+#define SDL_sinf(x) (float)SDL_sin((double)x)
+#endif
+
+#ifdef HAVE_SQRT
+#define SDL_sqrt sqrt
+#else
+extern DECLSPEC double SDLCALL SDL_sqrt(double x);
+#endif
+
+/* The SDL implementation of iconv() returns these error codes */
+#define SDL_ICONV_ERROR (size_t)-1
+#define SDL_ICONV_E2BIG (size_t)-2
+#define SDL_ICONV_EILSEQ (size_t)-3
+#define SDL_ICONV_EINVAL (size_t)-4
+
+#if defined(HAVE_ICONV) && defined(HAVE_ICONV_H)
+#define SDL_iconv_t iconv_t
+#define SDL_iconv_open iconv_open
+#define SDL_iconv_close iconv_close
+#else
+typedef struct _SDL_iconv_t *SDL_iconv_t;
+extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode,
+ const char *fromcode);
+extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd);
+#endif
+extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf,
+ size_t * inbytesleft, char **outbuf,
+ size_t * outbytesleft);
+/**
+ * This function converts a string between encodings in one pass, returning a
+ * string that must be freed with SDL_free() or NULL on error.
+ */
+extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode,
+ const char *fromcode,
+ const char *inbuf,
+ size_t inbytesleft);
+#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1)
+#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1)
+#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1)
+
+/* Ends C function definitions when using C++ */
+#ifdef __cplusplus
+/* *INDENT-OFF* */
+}
+/* *INDENT-ON* */
+#endif
+#include "close_code.h"
+
+#endif /* _SDL_stdinc_h */
+
+/* vi: set ts=4 sw=4 expandtab: */
diff -r af1d018ebbe6 -r 436183eb30c8 src/SDL_compat.c
diff -r af1d018ebbe6 -r 436183eb30c8 src/events/SDL_keyboard.c
--- a/src/events/SDL_keyboard.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/events/SDL_keyboard.c Sun Jul 18 13:48:23 2010 -0400
@@ -775,7 +775,7 @@
SDL_Event event;
event.text.type = SDL_TEXTINPUT;
event.text.windowID = keyboard->focus ? keyboard->focus->id : 0;
- SDL_strlcpy(event.text.text, text, SDL_arraysize(event.text.text));
+ SDL_utf8strlcpy(event.text.text, text, SDL_arraysize(event.text.text));
event.text.windowID = keyboard->focus ? keyboard->focus->id : 0;
posted = (SDL_PushEvent(&event) > 0);
}
@@ -796,7 +796,7 @@
event.edit.windowID = keyboard->focus ? keyboard->focus->id : 0;
event.edit.start = start;
event.edit.length = length;
- SDL_strlcpy(event.edit.text, text, SDL_arraysize(event.edit.text));
+ SDL_utf8strlcpy(event.edit.text, text, SDL_arraysize(event.edit.text));
posted = (SDL_PushEvent(&event) > 0);
}
return (posted);
diff -r af1d018ebbe6 -r 436183eb30c8 src/stdlib/SDL_string.c
--- a/src/stdlib/SDL_string.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/stdlib/SDL_string.c Sun Jul 18 13:48:23 2010 -0400
@@ -29,6 +29,21 @@
#define SDL_isupperhex(X) (((X) >= 'A') && ((X) <= 'F'))
#define SDL_islowerhex(X) (((X) >= 'a') && ((X) <= 'f'))
+#define UTF8_IsLeadByte(c) ((c) >= 0xC0 && (c) <= 0xF4)
+#define UTF8_IsTrailingByte(c) ((c) >= 0x80 && (c) <= 0xBF)
+
+int UTF8_TrailingBytes(unsigned char c)
+{
+ if (c >= 0xC0 && c<= 0xDF)
+ return 1;
+ else if (c >= 0xE0 && c <= 0xEF)
+ return 2;
+ else if (c >= 0xF0 && c <= 0xF4)
+ return 3;
+ else
+ return 0;
+}
+
#if !defined(HAVE_SSCANF) || !defined(HAVE_STRTOL)
static size_t
SDL_ScanLong(const char *text, int radix, long *valuep)
@@ -362,6 +377,38 @@
}
#endif
+size_t SDL_utf8strlcpy(char *dst, const char *src, size_t dst_bytes)
+{
+ size_t src_bytes = SDL_strlen(src);
+ size_t bytes = SDL_min(src_bytes, dst_bytes - 1);
+ int i = 0;
+ char trailing_bytes = 0;
+ if (bytes)
+ {
+ unsigned char c = (unsigned char)src[bytes - 1];
+ if (UTF8_IsLeadByte(c))
+ --bytes;
+ else if (UTF8_IsTrailingByte(c))
+ {
+ for (i = bytes - 1; i != 0; --i)
+ {
+ c = (unsigned char)src[i];
+ trailing_bytes = UTF8_TrailingBytes(c);
+ if (trailing_bytes)
+ {
+ if (bytes - i != trailing_bytes + 1)
+ bytes = i;
+
+ break;
+ }
+ }
+ }
+ SDL_memcpy(dst, src, bytes);
+ }
+ dst[bytes] = '\0';
+ return bytes;
+}
+
#ifndef HAVE_STRLCAT
size_t
SDL_strlcat(char *dst, const char *src, size_t maxlen)
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/SDL_sysvideo.h
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/SDL_video.c
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32events.c
--- a/src/video/win32/SDL_win32events.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32events.c Sun Jul 18 13:48:23 2010 -0400
@@ -131,6 +131,8 @@
}
#endif
+ if (IME_HandleMessage(hwnd, msg, wParam, &lParam, data->videodata))
+ return 0;
switch (msg) {
@@ -555,7 +557,7 @@
class.hbrBackground = NULL;
class.hInstance = SDL_Instance;
class.style = SDL_Appstyle;
- class.lpfnWndProc = DefWindowProc;
+ class.lpfnWndProc = WIN_WindowProc;
class.cbWndExtra = 0;
class.cbClsExtra = 0;
if (!RegisterClass(&class)) {
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32keyboard.c
--- a/src/video/win32/SDL_win32keyboard.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32keyboard.c Sun Jul 18 13:48:23 2010 -0400
@@ -26,6 +26,9 @@
#include "../../events/SDL_keyboard_c.h"
#include "../../events/scancodes_win32.h"
+#include
+#include
+
#ifndef MAPVK_VK_TO_VSC
#define MAPVK_VK_TO_VSC 0
#endif
@@ -46,6 +49,11 @@
82, 79, 80, 81, 75, 76, 77, 71, 72, 73
};
+void IME_Disable(SDL_VideoData *videodata, HWND hwnd);
+void IME_Enable(SDL_VideoData *videodata, HWND hwnd);
+void IME_Init(SDL_VideoData *videodata, HWND hwnd);
+void IME_Quit(SDL_VideoData *videodata);
+
void
WIN_InitKeyboard(_THIS)
{
@@ -81,6 +89,15 @@
data->key_layout = win32_scancode_table;
+ data->ime_com_initialized = SDL_FALSE;
+ data->ime_thread_mgr = 0;
+ data->ime_initialized = SDL_FALSE;
+ data->ime_enabled = SDL_FALSE;
+ data->ime_available = SDL_FALSE;
+ data->ime_hwnd_main = 0;
+ data->ime_hwnd_current = 0;
+ data->ime_himc = 0;
+
WIN_UpdateKeymap();
SDL_SetScancodeName(SDL_SCANCODE_APPLICATION, "Menu");
@@ -120,6 +137,196 @@
void
WIN_QuitKeyboard(_THIS)
{
+ IME_Quit((SDL_VideoData *)_this->driverdata);
+}
+
+void
+WIN_StartTextInput(_THIS)
+{
+ SDL_Window *window = SDL_GetKeyboardFocus();
+ if (window)
+ {
+ HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
+ SDL_VideoData *videodata = (SDL_VideoData *)_this->driverdata;
+ IME_Init(videodata, hwnd);
+ IME_Enable(videodata, hwnd);
+ }
+}
+
+void
+WIN_StopTextInput(_THIS)
+{
+ SDL_Window *window = SDL_GetKeyboardFocus();
+ if (window)
+ {
+ HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
+ SDL_VideoData *videodata = (SDL_VideoData *)_this->driverdata;
+ IME_Init(videodata, hwnd);
+ IME_Disable(videodata, hwnd);
+ }
+}
+
+void
+WIN_SetTextInputRect(_THIS, SDL_Rect *rect)
+{
+
+}
+
+void
+IME_Disable(SDL_VideoData *videodata, HWND hwnd)
+{
+ if (!videodata->ime_initialized || !videodata->ime_hwnd_current)
+ return;
+
+ if (videodata->ime_hwnd_current == videodata->ime_hwnd_main)
+ ImmAssociateContext(videodata->ime_hwnd_current, NULL);
+
+ videodata->ime_enabled = SDL_FALSE;
+}
+
+void
+IME_Enable(SDL_VideoData *videodata, HWND hwnd)
+{
+ if (!videodata->ime_initialized || !videodata->ime_hwnd_current)
+ return;
+
+ if (!videodata->ime_available) {
+ IME_Disable(videodata, hwnd);
+ return;
+ }
+ if (videodata->ime_hwnd_current == videodata->ime_hwnd_main)
+ ImmAssociateContext(videodata->ime_hwnd_current, videodata->ime_himc);
+
+ videodata->ime_enabled = SDL_TRUE;
+}
+
+void
+IME_Init(SDL_VideoData *videodata, HWND hwnd)
+{
+ if (videodata->ime_initialized)
+ return;
+
+ videodata->ime_hwnd_main = hwnd;
+ if (SUCCEEDED(CoInitializeEx(NULL, COINIT_APARTMENTTHREADED))) {
+ videodata->ime_com_initialized = SDL_TRUE;
+ CoCreateInstance(&CLSID_TF_ThreadMgr, NULL, CLSCTX_INPROC_SERVER, &IID_ITfThreadMgr, &videodata->ime_thread_mgr);
+ }
+ videodata->ime_initialized = SDL_TRUE;
+ videodata->ime_hwnd_current = videodata->ime_hwnd_main;
+ if (videodata->ime_thread_mgr) {
+ struct ITfDocumentMgr *document_mgr = 0;
+ if (SUCCEEDED(videodata->ime_thread_mgr->lpVtbl->AssociateFocus(videodata->ime_thread_mgr, hwnd, NULL, &document_mgr))) {
+ if (document_mgr)
+ document_mgr->lpVtbl->Release(document_mgr);
+ }
+ }
+ videodata->ime_himc = ImmGetContext(hwnd);
+ ImmReleaseContext(hwnd, videodata->ime_himc);
+ if (!videodata->ime_himc) {
+ videodata->ime_available = SDL_FALSE;
+ IME_Disable(videodata, hwnd);
+ return;
+ }
+ videodata->ime_available = SDL_TRUE;
+ IME_Disable(videodata, hwnd);
+}
+
+void
+IME_Quit(SDL_VideoData *videodata)
+{
+ if (!videodata->ime_initialized)
+ return;
+
+ if (videodata->ime_hwnd_main)
+ ImmAssociateContext(videodata->ime_hwnd_main, videodata->ime_himc);
+
+ videodata->ime_hwnd_main = 0;
+ videodata->ime_himc = 0;
+ if (videodata->ime_thread_mgr)
+ {
+ videodata->ime_thread_mgr->lpVtbl->Release(videodata->ime_thread_mgr);
+ videodata->ime_thread_mgr = 0;
+ }
+ if (videodata->ime_com_initialized)
+ {
+ CoUninitialize();
+ videodata->ime_com_initialized = SDL_FALSE;
+ }
+ videodata->ime_initialized = SDL_FALSE;
+}
+
+SDL_bool
+IME_HandleMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM *lParam, SDL_VideoData *videodata)
+{
+ SDL_bool trap = SDL_FALSE;
+ HIMC himc = 0;
+ WCHAR Buffer[SDL_TEXTINPUTEVENT_TEXT_SIZE / 2];
+ if (!videodata->ime_initialized || !videodata->ime_available || !videodata->ime_enabled)
+ return SDL_FALSE;
+
+ switch (msg)
+ {
+ case WM_INPUTLANGCHANGE:
+ break;
+ case WM_IME_SETCONTEXT:
+ *lParam = 0;
+ break;
+ case WM_IME_STARTCOMPOSITION:
+ trap = SDL_TRUE;
+ break;
+ case WM_IME_COMPOSITION:
+ trap = SDL_TRUE;
+ himc = ImmGetContext(hwnd);
+ if (*lParam & GCS_RESULTSTR)
+ {
+ LONG Length = 0;
+ char *s = 0;
+ Length = ImmGetCompositionStringW(himc, GCS_RESULTSTR, Buffer, sizeof(Buffer) * sizeof(Buffer[0]));
+ Buffer[Length / sizeof(Buffer[0])] = 0;
+ s = WIN_StringToUTF8(Buffer);
+ SDL_SendKeyboardText(s);
+ SDL_free(s);
+ }
+ if (*lParam & GCS_COMPSTR)
+ {
+ LONG Length = 0;
+ DWORD Cursor = 0;
+ char *s = 0;
+ Length = ImmGetCompositionStringW(himc, GCS_COMPSTR, Buffer, sizeof(Buffer) * sizeof(Buffer[0]));
+ Buffer[Length / sizeof(Buffer[0])] = 0;
+ s = WIN_StringToUTF8(Buffer);
+ Cursor = LOWORD(ImmGetCompositionStringW(himc, GCS_CURSORPOS, 0, 0));
+ SDL_SendEditingText(s, Cursor, 0);
+ SDL_free(s);
+ }
+ ImmReleaseContext(hwnd, himc);
+ break;
+ case WM_IME_ENDCOMPOSITION:
+ SDL_SendKeyboardText("");
+ break;
+ case WM_IME_NOTIFY:
+ switch (wParam)
+ {
+ case IMN_SETCONVERSIONMODE:
+ break;
+ case IMN_SETOPENSTATUS:
+ break;
+ case IMN_OPENCANDIDATE:
+ case IMN_CHANGECANDIDATE:
+ trap = SDL_TRUE;
+ break;
+ case IMN_CLOSECANDIDATE:
+ trap = SDL_TRUE;
+ break;
+ case IMN_PRIVATE:
+ break;
+ default:
+ trap = SDL_TRUE;
+ break;
+ }
+ break;
+ }
+ return trap;
}
/* vi: set ts=4 sw=4 expandtab: */
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32keyboard.h
--- a/src/video/win32/SDL_win32keyboard.h Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32keyboard.h Sun Jul 18 13:48:23 2010 -0400
@@ -31,6 +31,12 @@
extern void WIN_UpdateKeymap(void);
extern void WIN_QuitKeyboard(_THIS);
+extern void WIN_StartTextInput(_THIS);
+extern void WIN_StopTextInput(_THIS);
+extern void WIN_SetTextInputRect(_THIS, SDL_Rect *rect);
+
+extern SDL_bool IME_HandleMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM *lParam, struct SDL_VideoData *videodata);
+
#endif /* _SDL_win32keyboard_h */
/* vi: set ts=4 sw=4 expandtab: */
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32video.c
--- a/src/video/win32/SDL_win32video.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32video.c Sun Jul 18 13:48:23 2010 -0400
@@ -1,227 +1,230 @@
-/*
- SDL - Simple DirectMedia Layer
- Copyright (C) 1997-2010 Sam Lantinga
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
- Sam Lantinga
- slouken@libsdl.org
-*/
-#include "SDL_config.h"
-
-#include "SDL_main.h"
-#include "SDL_video.h"
-#include "SDL_mouse.h"
-#include "../SDL_sysvideo.h"
-#include "../SDL_pixels_c.h"
-
-#include "SDL_win32video.h"
-#include "SDL_d3drender.h"
-#include "SDL_gdirender.h"
-
-/* Initialization/Query functions */
-static int WIN_VideoInit(_THIS);
-static void WIN_VideoQuit(_THIS);
-
-/* Sets an error message based on GetLastError() */
-void
-WIN_SetError(const char *prefix)
-{
- TCHAR buffer[1024];
- char *message;
- FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
- buffer, SDL_arraysize(buffer), NULL);
- message = WIN_StringToUTF8(buffer);
- SDL_SetError("%s%s%s", prefix ? prefix : "", prefix ? ": " : "", message);
- SDL_free(message);
-}
-
-/* WIN32 driver bootstrap functions */
-
-static int
-WIN_Available(void)
-{
- return (1);
-}
-
-static void
-WIN_DeleteDevice(SDL_VideoDevice * device)
-{
- SDL_VideoData *data = (SDL_VideoData *) device->driverdata;
-
- SDL_UnregisterApp();
-#if SDL_VIDEO_RENDER_D3D
- if (data->d3d) {
- IDirect3D9_Release(data->d3d);
- FreeLibrary(data->d3dDLL);
- }
-#endif
-#if SDL_VIDEO_RENDER_DDRAW
- if (data->ddraw) {
- data->ddraw->lpVtbl->Release(data->ddraw);
- FreeLibrary(data->ddrawDLL);
- }
-#endif
- SDL_free(device->driverdata);
- SDL_free(device);
-}
-
-static SDL_VideoDevice *
-WIN_CreateDevice(int devindex)
-{
- SDL_VideoDevice *device;
- SDL_VideoData *data;
-
- SDL_RegisterApp(NULL, 0, NULL);
-
- /* Initialize all variables that we clean on shutdown */
- device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
- if (device) {
- data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
- } else {
- data = NULL;
- }
- if (!data) {
- SDL_OutOfMemory();
- if (device) {
- SDL_free(device);
- }
- return NULL;
- }
- device->driverdata = data;
-
-#if SDL_VIDEO_RENDER_D3D
- data->d3dDLL = LoadLibrary(TEXT("D3D9.DLL"));
- if (data->d3dDLL) {
- IDirect3D9 *(WINAPI * D3DCreate) (UINT SDKVersion);
-
- D3DCreate =
- (IDirect3D9 * (WINAPI *) (UINT)) GetProcAddress(data->d3dDLL,
- "Direct3DCreate9");
- if (D3DCreate) {
- data->d3d = D3DCreate(D3D_SDK_VERSION);
- }
- if (!data->d3d) {
- FreeLibrary(data->d3dDLL);
- data->d3dDLL = NULL;
- }
- }
-#endif /* SDL_VIDEO_RENDER_D3D */
-#if SDL_VIDEO_RENDER_DDRAW
- data->ddrawDLL = LoadLibrary(TEXT("ddraw.dll"));
- if (data->ddrawDLL) {
- IDirectDraw *(WINAPI * DDCreate) (GUID FAR * lpGUID,
- LPDIRECTDRAW FAR * lplpDD,
- IUnknown FAR * pUnkOuter);
-
- DDCreate =
- (IDirectDraw *
- (WINAPI *) (GUID FAR *, LPDIRECTDRAW FAR *, IUnknown FAR *))
- GetProcAddress(data->ddrawDLL, TEXT("DirectDrawCreate"));
- if (!DDCreate || DDCreate(NULL, &data->ddraw, NULL) != DD_OK) {
- FreeLibrary(data->ddrawDLL);
- data->ddrawDLL = NULL;
- data->ddraw = NULL;
- }
- }
-#endif /* SDL_VIDEO_RENDER_DDRAW */
-
- /* Set the function pointers */
- device->VideoInit = WIN_VideoInit;
- device->VideoQuit = WIN_VideoQuit;
- device->GetDisplayBounds = WIN_GetDisplayBounds;
- device->GetDisplayModes = WIN_GetDisplayModes;
- device->SetDisplayMode = WIN_SetDisplayMode;
- device->SetDisplayGammaRamp = WIN_SetDisplayGammaRamp;
- device->GetDisplayGammaRamp = WIN_GetDisplayGammaRamp;
- device->PumpEvents = WIN_PumpEvents;
-
-#undef CreateWindow
- device->CreateWindow = WIN_CreateWindow;
- device->CreateWindowFrom = WIN_CreateWindowFrom;
- device->SetWindowTitle = WIN_SetWindowTitle;
- device->SetWindowIcon = WIN_SetWindowIcon;
- device->SetWindowPosition = WIN_SetWindowPosition;
- device->SetWindowSize = WIN_SetWindowSize;
- device->ShowWindow = WIN_ShowWindow;
- device->HideWindow = WIN_HideWindow;
- device->RaiseWindow = WIN_RaiseWindow;
- device->MaximizeWindow = WIN_MaximizeWindow;
- device->MinimizeWindow = WIN_MinimizeWindow;
- device->RestoreWindow = WIN_RestoreWindow;
- device->SetWindowGrab = WIN_SetWindowGrab;
- device->DestroyWindow = WIN_DestroyWindow;
- device->GetWindowWMInfo = WIN_GetWindowWMInfo;
-#ifdef SDL_VIDEO_OPENGL_WGL
- device->GL_LoadLibrary = WIN_GL_LoadLibrary;
- device->GL_GetProcAddress = WIN_GL_GetProcAddress;
- device->GL_UnloadLibrary = WIN_GL_UnloadLibrary;
- device->GL_CreateContext = WIN_GL_CreateContext;
- device->GL_MakeCurrent = WIN_GL_MakeCurrent;
- device->GL_SetSwapInterval = WIN_GL_SetSwapInterval;
- device->GL_GetSwapInterval = WIN_GL_GetSwapInterval;
- device->GL_SwapWindow = WIN_GL_SwapWindow;
- device->GL_DeleteContext = WIN_GL_DeleteContext;
-#endif
-
- device->SetClipboardText = WIN_SetClipboardText;
- device->GetClipboardText = WIN_GetClipboardText;
- device->HasClipboardText = WIN_HasClipboardText;
-
- device->free = WIN_DeleteDevice;
-
- return device;
-}
-
-VideoBootStrap WIN32_bootstrap = {
- "win32", "SDL Win32/64 video driver", WIN_Available, WIN_CreateDevice
-};
-
-
-int
-WIN_VideoInit(_THIS)
-{
- if (WIN_InitModes(_this) < 0) {
- return -1;
- }
-
-#if SDL_VIDEO_RENDER_D3D
- D3D_AddRenderDriver(_this);
-#endif
-#if SDL_VIDEO_RENDER_DDRAW
- DDRAW_AddRenderDriver(_this);
-#endif
-#if SDL_VIDEO_RENDER_GDI
- GDI_AddRenderDriver(_this);
-#endif
-#if SDL_VIDEO_RENDER_GAPI
- GAPI_AddRenderDriver(_this);
-#endif
-
- WIN_InitKeyboard(_this);
- WIN_InitMouse(_this);
-
- return 0;
-}
-
-void
-WIN_VideoQuit(_THIS)
-{
- WIN_QuitModes(_this);
- WIN_QuitKeyboard(_this);
- WIN_QuitMouse(_this);
-}
-
-/* vim: set ts=4 sw=4 expandtab: */
+/*
+ SDL - Simple DirectMedia Layer
+ Copyright (C) 1997-2010 Sam Lantinga
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+ Sam Lantinga
+ slouken@libsdl.org
+*/
+#include "SDL_config.h"
+
+#include "SDL_main.h"
+#include "SDL_video.h"
+#include "SDL_mouse.h"
+#include "../SDL_sysvideo.h"
+#include "../SDL_pixels_c.h"
+
+#include "SDL_win32video.h"
+#include "SDL_d3drender.h"
+#include "SDL_gdirender.h"
+
+/* Initialization/Query functions */
+static int WIN_VideoInit(_THIS);
+static void WIN_VideoQuit(_THIS);
+
+/* Sets an error message based on GetLastError() */
+void
+WIN_SetError(const char *prefix)
+{
+ TCHAR buffer[1024];
+ char *message;
+ FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0,
+ buffer, SDL_arraysize(buffer), NULL);
+ message = WIN_StringToUTF8(buffer);
+ SDL_SetError("%s%s%s", prefix ? prefix : "", prefix ? ": " : "", message);
+ SDL_free(message);
+}
+
+/* WIN32 driver bootstrap functions */
+
+static int
+WIN_Available(void)
+{
+ return (1);
+}
+
+static void
+WIN_DeleteDevice(SDL_VideoDevice * device)
+{
+ SDL_VideoData *data = (SDL_VideoData *) device->driverdata;
+
+ SDL_UnregisterApp();
+#if SDL_VIDEO_RENDER_D3D
+ if (data->d3d) {
+ IDirect3D9_Release(data->d3d);
+ FreeLibrary(data->d3dDLL);
+ }
+#endif
+#if SDL_VIDEO_RENDER_DDRAW
+ if (data->ddraw) {
+ data->ddraw->lpVtbl->Release(data->ddraw);
+ FreeLibrary(data->ddrawDLL);
+ }
+#endif
+ SDL_free(device->driverdata);
+ SDL_free(device);
+}
+
+static SDL_VideoDevice *
+WIN_CreateDevice(int devindex)
+{
+ SDL_VideoDevice *device;
+ SDL_VideoData *data;
+
+ SDL_RegisterApp(NULL, 0, NULL);
+
+ /* Initialize all variables that we clean on shutdown */
+ device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
+ if (device) {
+ data = (struct SDL_VideoData *) SDL_calloc(1, sizeof(SDL_VideoData));
+ } else {
+ data = NULL;
+ }
+ if (!data) {
+ SDL_OutOfMemory();
+ if (device) {
+ SDL_free(device);
+ }
+ return NULL;
+ }
+ device->driverdata = data;
+
+#if SDL_VIDEO_RENDER_D3D
+ data->d3dDLL = LoadLibrary(TEXT("D3D9.DLL"));
+ if (data->d3dDLL) {
+ IDirect3D9 *(WINAPI * D3DCreate) (UINT SDKVersion);
+
+ D3DCreate =
+ (IDirect3D9 * (WINAPI *) (UINT)) GetProcAddress(data->d3dDLL,
+ "Direct3DCreate9");
+ if (D3DCreate) {
+ data->d3d = D3DCreate(D3D_SDK_VERSION);
+ }
+ if (!data->d3d) {
+ FreeLibrary(data->d3dDLL);
+ data->d3dDLL = NULL;
+ }
+ }
+#endif /* SDL_VIDEO_RENDER_D3D */
+#if SDL_VIDEO_RENDER_DDRAW
+ data->ddrawDLL = LoadLibrary(TEXT("ddraw.dll"));
+ if (data->ddrawDLL) {
+ IDirectDraw *(WINAPI * DDCreate) (GUID FAR * lpGUID,
+ LPDIRECTDRAW FAR * lplpDD,
+ IUnknown FAR * pUnkOuter);
+
+ DDCreate =
+ (IDirectDraw *
+ (WINAPI *) (GUID FAR *, LPDIRECTDRAW FAR *, IUnknown FAR *))
+ GetProcAddress(data->ddrawDLL, TEXT("DirectDrawCreate"));
+ if (!DDCreate || DDCreate(NULL, &data->ddraw, NULL) != DD_OK) {
+ FreeLibrary(data->ddrawDLL);
+ data->ddrawDLL = NULL;
+ data->ddraw = NULL;
+ }
+ }
+#endif /* SDL_VIDEO_RENDER_DDRAW */
+
+ /* Set the function pointers */
+ device->VideoInit = WIN_VideoInit;
+ device->VideoQuit = WIN_VideoQuit;
+ device->GetDisplayBounds = WIN_GetDisplayBounds;
+ device->GetDisplayModes = WIN_GetDisplayModes;
+ device->SetDisplayMode = WIN_SetDisplayMode;
+ device->SetDisplayGammaRamp = WIN_SetDisplayGammaRamp;
+ device->GetDisplayGammaRamp = WIN_GetDisplayGammaRamp;
+ device->PumpEvents = WIN_PumpEvents;
+
+#undef CreateWindow
+ device->CreateWindow = WIN_CreateWindow;
+ device->CreateWindowFrom = WIN_CreateWindowFrom;
+ device->SetWindowTitle = WIN_SetWindowTitle;
+ device->SetWindowIcon = WIN_SetWindowIcon;
+ device->SetWindowPosition = WIN_SetWindowPosition;
+ device->SetWindowSize = WIN_SetWindowSize;
+ device->ShowWindow = WIN_ShowWindow;
+ device->HideWindow = WIN_HideWindow;
+ device->RaiseWindow = WIN_RaiseWindow;
+ device->MaximizeWindow = WIN_MaximizeWindow;
+ device->MinimizeWindow = WIN_MinimizeWindow;
+ device->RestoreWindow = WIN_RestoreWindow;
+ device->SetWindowGrab = WIN_SetWindowGrab;
+ device->DestroyWindow = WIN_DestroyWindow;
+ device->GetWindowWMInfo = WIN_GetWindowWMInfo;
+#ifdef SDL_VIDEO_OPENGL_WGL
+ device->GL_LoadLibrary = WIN_GL_LoadLibrary;
+ device->GL_GetProcAddress = WIN_GL_GetProcAddress;
+ device->GL_UnloadLibrary = WIN_GL_UnloadLibrary;
+ device->GL_CreateContext = WIN_GL_CreateContext;
+ device->GL_MakeCurrent = WIN_GL_MakeCurrent;
+ device->GL_SetSwapInterval = WIN_GL_SetSwapInterval;
+ device->GL_GetSwapInterval = WIN_GL_GetSwapInterval;
+ device->GL_SwapWindow = WIN_GL_SwapWindow;
+ device->GL_DeleteContext = WIN_GL_DeleteContext;
+#endif
+ device->StartTextInput = WIN_StartTextInput;
+ device->StopTextInput = WIN_StopTextInput;
+ device->SetTextInputRect = WIN_SetTextInputRect;
+
+ device->SetClipboardText = WIN_SetClipboardText;
+ device->GetClipboardText = WIN_GetClipboardText;
+ device->HasClipboardText = WIN_HasClipboardText;
+
+ device->free = WIN_DeleteDevice;
+
+ return device;
+}
+
+VideoBootStrap WIN32_bootstrap = {
+ "win32", "SDL Win32/64 video driver", WIN_Available, WIN_CreateDevice
+};
+
+
+int
+WIN_VideoInit(_THIS)
+{
+ if (WIN_InitModes(_this) < 0) {
+ return -1;
+ }
+
+#if SDL_VIDEO_RENDER_D3D
+ D3D_AddRenderDriver(_this);
+#endif
+#if SDL_VIDEO_RENDER_DDRAW
+ DDRAW_AddRenderDriver(_this);
+#endif
+#if SDL_VIDEO_RENDER_GDI
+ GDI_AddRenderDriver(_this);
+#endif
+#if SDL_VIDEO_RENDER_GAPI
+ GAPI_AddRenderDriver(_this);
+#endif
+
+ WIN_InitKeyboard(_this);
+ WIN_InitMouse(_this);
+
+ return 0;
+}
+
+void
+WIN_VideoQuit(_THIS)
+{
+ WIN_QuitModes(_this);
+ WIN_QuitKeyboard(_this);
+ WIN_QuitMouse(_this);
+}
+
+/* vim: set ts=4 sw=4 expandtab: */
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32video.h
--- a/src/video/win32/SDL_win32video.h Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32video.h Sun Jul 18 13:48:23 2010 -0400
@@ -1,86 +1,95 @@
-/*
- SDL - Simple DirectMedia Layer
- Copyright (C) 1997-2010 Sam Lantinga
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library 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
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
- Sam Lantinga
- slouken@libsdl.org
-*/
-#include "SDL_config.h"
-
-#ifndef _SDL_win32video_h
-#define _SDL_win32video_h
-
-#include "../SDL_sysvideo.h"
-
-#define WIN32_LEAN_AND_MEAN
-#define STRICT
-#define UNICODE
-#undef WINVER
-#define WINVER 0x500 /* Need 0x410 for AlphaBlend() and 0x500 for EnumDisplayDevices() */
-#include
-
-#if SDL_VIDEO_RENDER_D3D
-//#include
-#define D3D_DEBUG_INFO
-#include "d3d9.h"
-#endif
-
-#if SDL_VIDEO_RENDER_DDRAW
-/* WIN32_LEAN_AND_MEAN was defined, so we have to include this by hand */
-#include
-#include "ddraw.h"
-#endif
-
-#include "SDL_win32clipboard.h"
-#include "SDL_win32events.h"
-#include "SDL_win32gamma.h"
-#include "SDL_win32keyboard.h"
-#include "SDL_win32modes.h"
-#include "SDL_win32mouse.h"
-#include "SDL_win32opengl.h"
-#include "SDL_win32window.h"
-
-#ifdef UNICODE
-#define WIN_StringToUTF8(S) SDL_iconv_string("UTF-8", "UCS-2", (char *)S, (SDL_wcslen(S)+1)*sizeof(WCHAR))
-#define WIN_UTF8ToString(S) (WCHAR *)SDL_iconv_string("UCS-2", "UTF-8", (char *)S, SDL_strlen(S)+1)
-#else
-#define WIN_StringToUTF8(S) SDL_iconv_string("UTF-8", "ASCII", (char *)S, (SDL_strlen(S)+1))
-#define WIN_UTF8ToString(S) SDL_iconv_string("ASCII", "UTF-8", (char *)S, SDL_strlen(S)+1)
-#endif
-extern void WIN_SetError(const char *prefix);
-
-/* Private display data */
-
-typedef struct SDL_VideoData
-{
-#if SDL_VIDEO_RENDER_D3D
- HANDLE d3dDLL;
- IDirect3D9 *d3d;
-#endif
-#if SDL_VIDEO_RENDER_DDRAW
- HANDLE ddrawDLL;
- IDirectDraw *ddraw;
-#endif
-
- DWORD clipboard_count;
-
- const SDL_scancode *key_layout;
-} SDL_VideoData;
-
-#endif /* _SDL_win32video_h */
-
-/* vi: set ts=4 sw=4 expandtab: */
+/*
+ SDL - Simple DirectMedia Layer
+ Copyright (C) 1997-2010 Sam Lantinga
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+ Sam Lantinga
+ slouken@libsdl.org
+*/
+#include "SDL_config.h"
+
+#ifndef _SDL_win32video_h
+#define _SDL_win32video_h
+
+#include "../SDL_sysvideo.h"
+
+#define WIN32_LEAN_AND_MEAN
+#define STRICT
+#define UNICODE
+#undef WINVER
+#define WINVER 0x500 /* Need 0x410 for AlphaBlend() and 0x500 for EnumDisplayDevices() */
+#include
+
+#if SDL_VIDEO_RENDER_D3D
+//#include
+#define D3D_DEBUG_INFO
+#include "d3d9.h"
+#endif
+
+#if SDL_VIDEO_RENDER_DDRAW
+/* WIN32_LEAN_AND_MEAN was defined, so we have to include this by hand */
+#include
+#include "ddraw.h"
+#endif
+
+#include "SDL_win32clipboard.h"
+#include "SDL_win32events.h"
+#include "SDL_win32gamma.h"
+#include "SDL_win32keyboard.h"
+#include "SDL_win32modes.h"
+#include "SDL_win32mouse.h"
+#include "SDL_win32opengl.h"
+#include "SDL_win32window.h"
+
+#ifdef UNICODE
+#define WIN_StringToUTF8(S) SDL_iconv_string("UTF-8", "UCS-2", (char *)S, (SDL_wcslen(S)+1)*sizeof(WCHAR))
+#define WIN_UTF8ToString(S) (WCHAR *)SDL_iconv_string("UCS-2", "UTF-8", (char *)S, SDL_strlen(S)+1)
+#else
+#define WIN_StringToUTF8(S) SDL_iconv_string("UTF-8", "ASCII", (char *)S, (SDL_strlen(S)+1))
+#define WIN_UTF8ToString(S) SDL_iconv_string("ASCII", "UTF-8", (char *)S, SDL_strlen(S)+1)
+#endif
+extern void WIN_SetError(const char *prefix);
+
+/* Private display data */
+
+typedef struct SDL_VideoData
+{
+#if SDL_VIDEO_RENDER_D3D
+ HANDLE d3dDLL;
+ IDirect3D9 *d3d;
+#endif
+#if SDL_VIDEO_RENDER_DDRAW
+ HANDLE ddrawDLL;
+ IDirectDraw *ddraw;
+#endif
+
+ const SDL_scancode *key_layout;
+ DWORD clipboard_count;
+
+ SDL_bool ime_com_initialized;
+ struct ITfThreadMgr *ime_thread_mgr;
+ SDL_bool ime_initialized;
+ SDL_bool ime_enabled;
+ SDL_bool ime_available;
+ HWND ime_hwnd_main;
+ HWND ime_hwnd_current;
+ HIMC ime_himc;
+
+} SDL_VideoData;
+
+#endif /* _SDL_win32video_h */
+
+/* vi: set ts=4 sw=4 expandtab: */
diff -r af1d018ebbe6 -r 436183eb30c8 src/video/win32/SDL_win32window.c
--- a/src/video/win32/SDL_win32window.c Sun Jul 18 10:26:46 2010 -0700
+++ b/src/video/win32/SDL_win32window.c Sun Jul 18 13:48:23 2010 -0400
@@ -109,10 +109,12 @@
/* Set up the window proc function */
data->wndproc = (WNDPROC) GetWindowLongPtr(hwnd, GWLP_WNDPROC);
- if (data->wndproc == DefWindowProc) {
+ if (data->wndproc == WIN_WindowProc) {
data->wndproc = NULL;
}
- SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR) WIN_WindowProc);
+ else {
+ SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR) WIN_WindowProc);
+ }
/* Fill in the SDL window with the window data */
{