/****************************************************************************************** * Chili Direct3D Engine * * Copyright 2018 PlanetChili * * * * This file is part of Chili Direct3D Engine. * * * * Chili Direct3D Engine is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * The Chili Direct3D Engine is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with The Chili Direct3D Engine. If not, see . * ******************************************************************************************/ #include "Window.h" #include int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { try { Window wnd(800, 600, "Oasis Demo"); MSG msg; BOOL gResult; while ((gResult = GetMessage(&msg, nullptr, 0, 0)) > 0) { // TranslateMessage will post auxilliary WM_CHAR messages from key msgs TranslateMessage(&msg); DispatchMessage(&msg); // if (wnd.kbd.KeyIsPressed(VK_SPACE) || wnd.kbd.KeyIsPressed(VK_MENU)) // { // MessageBox(nullptr, "Something happens!", "Space key was pressed", MB_OK | MB_ICONEXCLAMATION); // } while (!wnd.mouse.IsEmpty()) { const auto e = wnd.mouse.Read(); static int i = 0; switch (e.GetType()) { case Mouse::Event::Type::Move: { std::ostringstream oss; oss << "Mouse Position: (" << e.GetPosX() << "," << e.GetPosY() << "), " << "Mouse Press Status: (" << wnd.mouse.LeftIsPressed() << "," << wnd.mouse.RightIsPressed() << ")"; wnd.SetTitle(oss.str()); break; } case Mouse::Event::Type::WheelUp: { i++; std::ostringstream oss; oss << "Up: " << i; wnd.SetTitle(oss.str()); break; } case Mouse::Event::Type::WheelDown: { i--; std::ostringstream oss; oss << "Down: " << i; wnd.SetTitle(oss.str()); break; } } } } // check if GetMessage call itself borked if (gResult == -1) { return -1; } // wParam here is the value passed to PostQuitMessage return msg.wParam; } catch (const ChiliException& e) { MessageBox(nullptr, e.what(), e.GetType(), MB_OK | MB_ICONEXCLAMATION); } catch (const std::exception& e) { MessageBox(nullptr, e.what(), "Standard Exception", MB_OK | MB_ICONEXCLAMATION); } catch (...) { MessageBox(nullptr, "No details available", "Unknown Exception", MB_OK | MB_ICONEXCLAMATION); } return -1; }