2014-03-16 19:49:59 -04:00
|
|
|
/*
|
2015-01-01 18:04:46 -05:00
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
2014-03-16 19:49:59 -04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "entry_p.h"
|
|
|
|
|
|
|
|
#if BX_PLATFORM_EMSCRIPTEN
|
|
|
|
|
|
|
|
#include <emscripten.h>
|
|
|
|
|
2015-08-15 14:27:26 -04:00
|
|
|
extern "C" void entry_emscripten_yield()
|
|
|
|
{
|
|
|
|
// emscripten_sleep(0);
|
|
|
|
}
|
|
|
|
|
2014-03-16 19:49:59 -04:00
|
|
|
namespace entry
|
|
|
|
{
|
|
|
|
const Event* poll()
|
|
|
|
{
|
2015-08-15 14:27:26 -04:00
|
|
|
entry_emscripten_yield();
|
2014-03-16 19:58:22 -04:00
|
|
|
return NULL;
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
const Event* poll(WindowHandle _handle)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle);
|
2015-08-15 14:27:26 -04:00
|
|
|
entry_emscripten_yield();
|
2014-09-22 22:34:10 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void release(const Event* _event)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_event);
|
|
|
|
}
|
|
|
|
|
|
|
|
WindowHandle createWindow(int32_t _x, int32_t _y, uint32_t _width, uint32_t _height, uint32_t _flags, const char* _title)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_x, _y, _width, _height, _flags, _title);
|
|
|
|
WindowHandle handle = { UINT16_MAX };
|
|
|
|
return handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroyWindow(WindowHandle _handle)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setWindowPos(WindowHandle _handle, int32_t _x, int32_t _y)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_handle, _x, _y);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setWindowSize(WindowHandle _handle, uint32_t _width, uint32_t _height)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _width, _height);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setWindowTitle(WindowHandle _handle, const char* _title)
|
2014-08-05 15:57:52 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _title);
|
2014-08-05 15:57:52 -04:00
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void toggleWindowFrame(WindowHandle _handle)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
|
2015-03-07 17:38:48 -05:00
|
|
|
void toggleFullscreen(WindowHandle _handle)
|
|
|
|
{
|
|
|
|
BX_UNUSED(_handle);
|
|
|
|
}
|
|
|
|
|
2014-09-22 22:34:10 -04:00
|
|
|
void setMouseLock(WindowHandle _handle, bool _lock)
|
2014-03-16 19:49:59 -04:00
|
|
|
{
|
2014-09-22 22:34:10 -04:00
|
|
|
BX_UNUSED(_handle, _lock);
|
2014-03-16 19:49:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int _argc, char** _argv)
|
|
|
|
{
|
|
|
|
return entry::main(_argc, _argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BX_PLATFORM_EMSCRIPTEN
|