//======================================================================== // GLFW 3.3 Wayland - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2014 Jonas Ã…dahl // // This software is provided 'as-is', without any express or implied // warranty. In no event will the authors be held liable for any damages // arising from the use of this software. // // Permission is granted to anyone to use this software for any purpose, // including commercial applications, and to alter it and redistribute it // freely, subject to the following restrictions: // // 1. The origin of this software must not be misrepresented; you must not // claim that you wrote the original software. If you use this software // in a product, an acknowledgment in the product documentation would // be appreciated but is not required. // // 2. Altered source versions must be plainly marked as such, and must not // be misrepresented as being the original software. // // 3. This notice may not be removed or altered from any source // distribution. // //======================================================================== #pragma once #include #include typedef unsigned long long id_type; typedef void(*watch_callback_func)(int, int, void*); typedef void(*timer_callback_func)(id_type, void*); typedef struct { int fd, events, enabled, ready; watch_callback_func callback; void *callback_data; id_type id; const char *name; } Watch; typedef struct { id_type id; double interval, trigger_at; timer_callback_func callback; void *callback_data; const char *name; } Timer; typedef struct { struct pollfd fds[32]; int wakeupFds[2]; nfds_t watches_count, timers_count; Watch watches[32]; Timer timers[128]; } EventLoopData; id_type addWatch(EventLoopData *eld, const char *name, int fd, int events, int enabled, watch_callback_func cb, void *cb_data); void removeWatch(EventLoopData *eld, id_type watch_id); void toggleWatch(EventLoopData *eld, id_type watch_id, int enabled); id_type addTimer(EventLoopData *eld, const char *name, double interval, int enabled, timer_callback_func cb, void *cb_data); void removeTimer(EventLoopData *eld, id_type timer_id); void toggleTimer(EventLoopData *eld, id_type timer_id, int enabled); void changeTimerInterval(EventLoopData *eld, id_type timer_id, double interval); double prepareForPoll(EventLoopData *eld, double timeout); int pollWithTimeout(struct pollfd *fds, nfds_t nfds, double timeout); int pollForEvents(EventLoopData *eld, double timeout); unsigned dispatchTimers(EventLoopData *eld); void closeFds(int *fds, size_t count); void initPollData(EventLoopData *eld, int wakeup_fd, int display_fd); char** parseUriList(char* text, int* count);