| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- /*
- Copyright (C) 2015 by Ivan Safrin
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include "polycode/core/PolyUWPCore.h"
- #include "polycode/core/PolyBasicFileProvider.h"
- #include <ppltasks.h>
- #include "polycode/core/PolyOpenGLGraphicsInterface.h"
- using namespace concurrency;
- using namespace Polycode;
- using namespace ABI::Windows::Foundation;
- using namespace ABI::Windows::Storage;
- using namespace Microsoft::WRL;
- using namespace Microsoft::WRL::Wrappers;
- void UWPCoreMutex::lock() {
- mutex.lock();
- }
- void UWPCoreMutex::unlock() {
- mutex.unlock();
- }
- UWPCore::UWPCore(PolycodeView *view, int xRes, int yRes, bool fullScreen, bool vSync, int aaLevel, int anisotropyLevel, int frameRate, int monitorIndex, bool retinaSupport)
- : Core(xRes, yRes, fullScreen, vSync, aaLevel, anisotropyLevel, frameRate, monitorIndex) {
- m_Window = view->window;
- m_eglWindow = view->eglWindow;
- mEglDisplay = view->mEglDisplay;
- mEglContext = view->mEglContext;
- mEglSurface = view->mEglSurface;
- LARGE_INTEGER li;
- QueryPerformanceFrequency(&li);
- pcFreq = double(li.QuadPart) / 1000.0;
- lastMouseY = 0;
- lastMouseX = 0;
- fileProviders.push_back(new BasicFileProvider());
- renderer = new Renderer();
- renderer->setBackingResolutionScale(1.0, 1.0);
- graphicsInterface = new OpenGLGraphicsInterface();
- renderer->setGraphicsInterface(this, graphicsInterface);
- services->setRenderer(renderer);
- setVideoMode(xRes, yRes, fullScreen, vSync, aaLevel, anisotropyLevel, retinaSupport);
- services->getSoundManager()->setAudioInterface(new XAudio2AudioInterface());
- eventMutex = createMutex();
- }
- UWPCore::~UWPCore() {
- }
- void UWPCore::Render() {
- renderer->beginFrame();
- services->Render(Polycode::Rectangle(0, 0, xRes, yRes));
- renderer->endFrame();
- }
- void UWPCore::checkEvents() {
- eventMutex->lock();
- UWPEvent event;
- for (int i = 0; i < systemInputEvents.size(); i++) {
- event = systemInputEvents[i];
- switch (event.eventGroup) {
- case UWPEvent::INPUT_EVENT:
- switch (event.eventCode) {
- case InputEvent::EVENT_MOUSEMOVE:
- input->setDeltaPosition(lastMouseX - event.mouseX, lastMouseY - event.mouseY);
- lastMouseX = event.mouseX;
- lastMouseY = event.mouseY;
- input->setMousePosition(event.mouseX, event.mouseY, getTicks());
- break;
- case InputEvent::EVENT_MOUSEDOWN:
- input->mousePosition.x = event.mouseX;
- input->mousePosition.y = event.mouseY;
- input->setMouseButtonState(event.mouseButton, true, getTicks());
- break;
- case InputEvent::EVENT_MOUSEWHEEL_UP:
- input->mouseWheelUp(getTicks());
- break;
- case InputEvent::EVENT_MOUSEWHEEL_DOWN:
- input->mouseWheelDown(getTicks());
- break;
- case InputEvent::EVENT_MOUSEUP:
- input->setMouseButtonState(event.mouseButton, false, getTicks());
- break;
- case InputEvent::EVENT_KEYDOWN:
- if (!checkSpecialKeyEvents(event.keyCode))
- input->setKeyState(event.keyCode, event.unicodeChar, true, getTicks());
- break;
- case InputEvent::EVENT_KEYUP:
- input->setKeyState(event.keyCode, event.unicodeChar, false, getTicks());
- break;
- case InputEvent::EVENT_TOUCHES_BEGAN:
- input->touchesBegan(event.touch, event.touches, getTicks());
- break;
- case InputEvent::EVENT_TOUCHES_ENDED:
- input->touchesEnded(event.touch, event.touches, getTicks());
- break;
- case InputEvent::EVENT_TOUCHES_MOVED:
- input->touchesMoved(event.touch, event.touches, getTicks());
- break;
- }
- break;
- case UWPEvent::SYSTEM_FOCUS_EVENT:
- switch (event.eventCode) {
- case Core::EVENT_LOST_FOCUS:
- loseFocus();
- break;
- case Core::EVENT_GAINED_FOCUS:
- gainFocus();
- break;
- }
- break;
- }
- }
- systemInputEvents.clear();
- eventMutex->unlock();
- }
- bool UWPCore::systemUpdate() {
- if (!running) {
- return false;
- }
- doSleep();
- updateCore();
- checkEvents();
- return running;
- }
- void UWPCore::setCursor(int cursorType) {
- }
- void launchThread(Threaded *target) {
- target->runThread();
- target->scheduledForRemoval = true;
- }
- void UWPCore::createThread(Threaded * target) {
- Core::createThread(target);
- std::thread *thread = new std::thread(launchThread, target);
-
- }
- CoreMutex *UWPCore::createMutex() {
- UWPCoreMutex *mutex = new UWPCoreMutex();
- return mutex;
- }
- void UWPCore::copyStringToClipboard(const String& str) {
- }
- String UWPCore::getClipboardString() {
- return "";
- }
- void UWPCore::createFolder(const String& folderPath) {
- }
- void UWPCore::copyDiskItem(const String& itemPath, const String& destItemPath) {
- }
- void UWPCore::moveDiskItem(const String& itemPath, const String& destItemPath) {
- }
- void UWPCore::removeDiskItem(const String& itemPath) {
- }
- String UWPCore::openFolderPicker() {
- return "";
- }
- std::vector<String> UWPCore::openFilePicker(std::vector<CoreFileExtension> extensions, bool allowMultiple) {
- std::vector<String> ret;
- return ret;
- }
- String UWPCore::saveFilePicker(std::vector<CoreFileExtension> extensions) {
- return "";
- }
- void UWPCore::handleVideoModeChange(VideoModeChangeInfo *modeInfo) {
- if (eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext) == EGL_FALSE)
- {
- assert(false);
- }
- }
- void UWPCore::flushRenderContext() {
- eglSwapBuffers(mEglDisplay, mEglSurface);
- }
- void UWPCore::openURL(String url) {
- }
- unsigned int UWPCore::getTicks() {
- LARGE_INTEGER li;
- QueryPerformanceCounter(&li);
- return (unsigned int)(li.QuadPart / pcFreq);
- return 0;
- }
- String UWPCore::executeExternalCommand(String command, String args, String inDirectory) {
- return "";
- }
- void wtoc(char* Dest, const WCHAR* Source)
- {
- int i = 0;
- while (Source[i] != '\0') {
- Dest[i] = (char)Source[i];
- ++i;
- }
- Dest[i] = 0;
- }
- void ctow(WCHAR* Dest, const char* Source)
- {
- int i = 0;
- while (Source[i] != '\0') {
- Dest[i] = (WCHAR)Source[i];
- ++i;
- }
- Dest[i] = 0;
- }
- bool UWPCore::systemParseFolder(const Polycode::String& pathString, bool showHidden, std::vector<OSFileEntry> &targetVector) {
- WIN32_FIND_DATA findFileData;
- WCHAR curDir[4096];
- GetCurrentDirectory(4096, curDir);
- WCHAR tmp[4096];
- memset(tmp, 0, sizeof(WCHAR) * 4096);
- ctow(tmp, pathString.c_str());
- WIN32_FILE_ATTRIBUTE_DATA fileData;
- GetFileAttributesEx(tmp, GetFileExInfoStandard, &fileData);
- if (!(fileData.dwFileAttributes != INVALID_FILE_ATTRIBUTES &&
- (fileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))) {
- return true;
- }
- SetCurrentDirectory(tmp);
- HANDLE hFind = FindFirstFileEx(L"*", FindExInfoStandard, &findFileData, FindExSearchNameMatch, NULL, 0);
- if (hFind == INVALID_HANDLE_VALUE) {
- SetCurrentDirectory(curDir);
- return true;
- }
- do {
- String fname(findFileData.cFileName);
- if ((fname.c_str()[0] != '.' || (fname.c_str()[0] == '.' && showHidden)) && fname != "..") {
- if (findFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
- targetVector.push_back(OSFileEntry(pathString, fname, OSFileEntry::TYPE_FOLDER));
- }
- else {
- targetVector.push_back(OSFileEntry(pathString, fname, OSFileEntry::TYPE_FILE));
- }
- }
- } while (FindNextFile(hFind, &findFileData));
- FindClose(hFind);
- SetCurrentDirectory(curDir);
- return true;
- }
- void UWPCore::handleSystemEvent(UWPEvent systemEvent) {
- eventMutex->lock();
- systemInputEvents.push_back(systemEvent);
- eventMutex->unlock();
- }
- void Core::getScreenInfo(int *width, int *height, int *hz) {
- }
- void UWPCore::setDeviceSize(Number x, Number y) {
- deviceWidth = x;
- deviceHeight = y;
- renderer->setBackingResolutionScale(xRes/deviceWidth, yRes/deviceHeight);
- }
- Number UWPCore::getBackingXRes() {
- return deviceWidth;
- }
- Number UWPCore::getBackingYRes() {
- return deviceHeight;
- }
|