![]() |
Wise&mystical
1.0
Project about Europe
|
#include "raylib.h"
#include "config.h"
#include "utils.h"
#include "rlgl.h"
#include "raymath.h"
#include "rgestures.h"
#include "rcamera.h"
#include "external/msf_gif.h"
#include "external/sinfl.h"
#include "external/sdefl.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <math.h>
#include <sys/stat.h>
#include <dirent.h>
#include <unistd.h>
Go to the source code of this file.
Classes | |
struct | Point |
struct | Size |
struct | CoreData |
Macros | |
#define | RLGL_IMPLEMENTATION |
rcore - Basic functions to manage windows, OpenGL context and input on multiple platforms More... | |
#define | RAYMATH_IMPLEMENTATION |
#define | GESTURES_IMPLEMENTATION |
#define | CAMERA_IMPLEMENTATION |
#define | MSF_GIF_MALLOC(contextPointer, newSize) RL_MALLOC(newSize) |
#define | MSF_GIF_REALLOC(contextPointer, oldMemory, oldSize, newSize) RL_REALLOC(oldMemory, newSize) |
#define | MSF_GIF_FREE(contextPointer, oldMemory, oldSize) RL_FREE(oldMemory) |
#define | MSF_GIF_IMPL |
#define | SINFL_IMPLEMENTATION |
#define | SINFL_NO_SIMD |
#define | SDEFL_IMPLEMENTATION |
#define | GETCWD getcwd |
#define | CHDIR chdir |
#define | FLAG_SET(n, f) ((n) |= (f)) |
#define | FLAG_CLEAR(n, f) ((n) &= ~(f)) |
#define | FLAG_TOGGLE(n, f) ((n) ^= (f)) |
#define | FLAG_CHECK(n, f) ((n) & (f)) |
#define | GIF_RECORD_FRAMERATE 10 |
#define | FPS_CAPTURE_FRAMES_COUNT 30 |
#define | FPS_AVERAGE_TIME_SECONDS 0.5f |
#define | FPS_STEP (FPS_AVERAGE_TIME_SECONDS/FPS_CAPTURE_FRAMES_COUNT) |
#define | MAX_FILENAMEWITHOUTEXT_LENGTH 128 |
#define | COMPRESSION_QUALITY_DEFLATE 8 |
Typedefs | |
typedef struct CoreData | CoreData |
Functions | |
void | LoadFontDefault (void) |
void | UnloadFontDefault (void) |
void | InitWindow (int width, int height, const char *title) |
void | CloseWindow (void) |
bool | WindowShouldClose (void) |
bool | IsWindowReady (void) |
bool | IsWindowFullscreen (void) |
bool | IsWindowHidden (void) |
bool | IsWindowMinimized (void) |
bool | IsWindowMaximized (void) |
bool | IsWindowFocused (void) |
bool | IsWindowResized (void) |
bool | IsWindowState (unsigned int flag) |
void | ToggleFullscreen (void) |
void | MaximizeWindow (void) |
void | MinimizeWindow (void) |
void | RestoreWindow (void) |
void | SetWindowState (unsigned int flags) |
void | ClearWindowState (unsigned int flags) |
void | SetWindowIcon (Image image) |
void | SetWindowTitle (const char *title) |
void | SetWindowPosition (int x, int y) |
void | SetWindowMonitor (int monitor) |
void | SetWindowMinSize (int width, int height) |
void | SetWindowSize (int width, int height) |
void | SetWindowOpacity (float opacity) |
int | GetScreenWidth (void) |
int | GetScreenHeight (void) |
int | GetRenderWidth (void) |
int | GetRenderHeight (void) |
void * | GetWindowHandle (void) |
int | GetMonitorCount (void) |
int | GetCurrentMonitor (void) |
Vector2 | GetMonitorPosition (int monitor) |
int | GetMonitorWidth (int monitor) |
int | GetMonitorHeight (int monitor) |
int | GetMonitorPhysicalWidth (int monitor) |
int | GetMonitorPhysicalHeight (int monitor) |
int | GetMonitorRefreshRate (int monitor) |
Vector2 | GetWindowPosition (void) |
Vector2 | GetWindowScaleDPI (void) |
const char * | GetMonitorName (int monitor) |
const char * | GetClipboardText (void) |
void | SetClipboardText (const char *text) |
void | ShowCursor (void) |
void | HideCursor (void) |
bool | IsCursorHidden (void) |
void | EnableCursor (void) |
void | DisableCursor (void) |
bool | IsCursorOnScreen (void) |
void | ClearBackground (Color color) |
void | BeginDrawing (void) |
void | EndDrawing (void) |
void | BeginMode2D (Camera2D camera) |
void | EndMode2D (void) |
void | BeginMode3D (Camera3D camera) |
void | EndMode3D (void) |
void | BeginTextureMode (RenderTexture2D target) |
void | EndTextureMode (void) |
void | BeginShaderMode (Shader shader) |
void | EndShaderMode (void) |
void | BeginBlendMode (int mode) |
void | EndBlendMode (void) |
void | BeginScissorMode (int x, int y, int width, int height) |
void | EndScissorMode (void) |
void | BeginVrStereoMode (VrStereoConfig config) |
void | EndVrStereoMode (void) |
VrStereoConfig | LoadVrStereoConfig (VrDeviceInfo device) |
void | UnloadVrStereoConfig (VrStereoConfig config) |
Shader | LoadShader (const char *vsFileName, const char *fsFileName) |
RLAPI Shader | LoadShaderFromMemory (const char *vsCode, const char *fsCode) |
void | UnloadShader (Shader shader) |
int | GetShaderLocation (Shader shader, const char *uniformName) |
int | GetShaderLocationAttrib (Shader shader, const char *attribName) |
void | SetShaderValue (Shader shader, int locIndex, const void *value, int uniformType) |
void | SetShaderValueV (Shader shader, int locIndex, const void *value, int uniformType, int count) |
void | SetShaderValueMatrix (Shader shader, int locIndex, Matrix mat) |
void | SetShaderValueTexture (Shader shader, int locIndex, Texture2D texture) |
Ray | GetMouseRay (Vector2 mouse, Camera camera) |
Matrix | GetCameraMatrix (Camera camera) |
Matrix | GetCameraMatrix2D (Camera2D camera) |
Vector2 | GetWorldToScreen (Vector3 position, Camera camera) |
Vector2 | GetWorldToScreenEx (Vector3 position, Camera camera, int width, int height) |
Vector2 | GetWorldToScreen2D (Vector2 position, Camera2D camera) |
Vector2 | GetScreenToWorld2D (Vector2 position, Camera2D camera) |
void | SetTargetFPS (int fps) |
int | GetFPS (void) |
float | GetFrameTime (void) |
double | GetTime (void) |
void | SetConfigFlags (unsigned int flags) |
void | TakeScreenshot (const char *fileName) |
int | GetRandomValue (int min, int max) |
void | SetRandomSeed (unsigned int seed) |
bool | FileExists (const char *fileName) |
bool | IsFileExtension (const char *fileName, const char *ext) |
bool | DirectoryExists (const char *dirPath) |
int | GetFileLength (const char *fileName) |
const char * | GetFileExtension (const char *fileName) |
const char * | GetFileName (const char *filePath) |
const char * | GetFileNameWithoutExt (const char *filePath) |
const char * | GetDirectoryPath (const char *filePath) |
const char * | GetPrevDirectoryPath (const char *dirPath) |
const char * | GetWorkingDirectory (void) |
const char * | GetApplicationDirectory (void) |
char ** | GetDirectoryFiles (const char *dirPath, int *fileCount) |
void | ClearDirectoryFiles (void) |
bool | ChangeDirectory (const char *dir) |
bool | IsFileDropped (void) |
char ** | GetDroppedFiles (int *count) |
void | ClearDroppedFiles (void) |
long | GetFileModTime (const char *fileName) |
unsigned char * | CompressData (const unsigned char *data, int dataSize, int *compDataSize) |
unsigned char * | DecompressData (const unsigned char *compData, int compDataSize, int *dataSize) |
char * | EncodeDataBase64 (const unsigned char *data, int dataSize, int *outputSize) |
unsigned char * | DecodeDataBase64 (const unsigned char *data, int *outputSize) |
bool | SaveStorageValue (unsigned int position, int value) |
int | LoadStorageValue (unsigned int position) |
void | OpenURL (const char *url) |
bool | IsKeyPressed (int key) |
bool | IsKeyDown (int key) |
bool | IsKeyReleased (int key) |
bool | IsKeyUp (int key) |
int | GetKeyPressed (void) |
int | GetCharPressed (void) |
void | SetExitKey (int key) |
bool | IsGamepadAvailable (int gamepad) |
const char * | GetGamepadName (int gamepad) |
int | GetGamepadAxisCount (int gamepad) |
float | GetGamepadAxisMovement (int gamepad, int axis) |
bool | IsGamepadButtonPressed (int gamepad, int button) |
bool | IsGamepadButtonDown (int gamepad, int button) |
bool | IsGamepadButtonReleased (int gamepad, int button) |
bool | IsGamepadButtonUp (int gamepad, int button) |
int | GetGamepadButtonPressed (void) |
int | SetGamepadMappings (const char *mappings) |
bool | IsMouseButtonPressed (int button) |
bool | IsMouseButtonDown (int button) |
bool | IsMouseButtonReleased (int button) |
bool | IsMouseButtonUp (int button) |
int | GetMouseX (void) |
int | GetMouseY (void) |
Vector2 | GetMousePosition (void) |
Vector2 | GetMouseDelta (void) |
void | SetMousePosition (int x, int y) |
void | SetMouseOffset (int offsetX, int offsetY) |
void | SetMouseScale (float scaleX, float scaleY) |
float | GetMouseWheelMove (void) |
void | SetMouseCursor (int cursor) |
int | GetTouchX (void) |
int | GetTouchY (void) |
Vector2 | GetTouchPosition (int index) |
int | GetTouchPointId (int index) |
int | GetTouchPointCount (void) |
void | WaitTime (float ms) |
void | SwapScreenBuffer (void) |
void | PollInputEvents (void) |
Variables | |
const char * | raylibVersion = RAYLIB_VERSION |
#define COMPRESSION_QUALITY_DEFLATE 8 |
#define FPS_AVERAGE_TIME_SECONDS 0.5f |
#define FPS_CAPTURE_FRAMES_COUNT 30 |
#define FPS_STEP (FPS_AVERAGE_TIME_SECONDS/FPS_CAPTURE_FRAMES_COUNT) |
#define GIF_RECORD_FRAMERATE 10 |
#define MAX_FILENAMEWITHOUTEXT_LENGTH 128 |
#define MSF_GIF_FREE | ( | contextPointer, | |
oldMemory, | |||
oldSize | |||
) | RL_FREE(oldMemory) |
#define MSF_GIF_MALLOC | ( | contextPointer, | |
newSize | |||
) | RL_MALLOC(newSize) |
#define MSF_GIF_REALLOC | ( | contextPointer, | |
oldMemory, | |||
oldSize, | |||
newSize | |||
) | RL_REALLOC(oldMemory, newSize) |
#define RLGL_IMPLEMENTATION |
rcore - Basic functions to manage windows, OpenGL context and input on multiple platforms
PLATFORMS SUPPORTED:
CONFIGURATION:
#define PLATFORM_DESKTOP Windowing and input system configured for desktop platforms: Windows, Linux, OSX, FreeBSD, OpenBSD, NetBSD, DragonFly NOTE: Oculus Rift CV1 requires PLATFORM_DESKTOP for mirror rendering - View [rlgl] module to enable it
#define PLATFORM_ANDROID Windowing and input system configured for Android device, app activity managed internally in this module. NOTE: OpenGL ES 2.0 is required and graphic device is managed by EGL
#define PLATFORM_RPI Windowing and input system configured for Raspberry Pi in native mode (no XWindow required), graphic device is managed by EGL and inputs are processed is raw mode, reading from /dev/input/
#define PLATFORM_DRM Windowing and input system configured for DRM native mode (RPI4 and other devices) graphic device is managed by EGL and inputs are processed is raw mode, reading from /dev/input/
#define PLATFORM_WEB Windowing and input system configured for HTML5 (run on browser), code converted from C to asm.js using emscripten compiler. OpenGL ES 2.0 required for direct translation to WebGL equivalent code.
#define SUPPORT_DEFAULT_FONT (default) Default font is loaded on window initialization to be available for the user to render simple text. NOTE: If enabled, uses external module functions to load default raylib font (module: text)
#define SUPPORT_CAMERA_SYSTEM Camera module is included (rcamera.h) and multiple predefined cameras are available: free, 1st/3rd person, orbital
#define SUPPORT_GESTURES_SYSTEM Gestures module is included (rgestures.h) to support gestures detection: tap, hold, swipe, drag
#define SUPPORT_MOUSE_GESTURES Mouse gestures are directly mapped like touches and processed by gestures system.
#define SUPPORT_TOUCH_AS_MOUSE Touch input and mouse input are shared. Mouse functions also return touch information.
#define SUPPORT_SSH_KEYBOARD_RPI (Raspberry Pi only) Reconfigure standard input to receive key inputs, works with SSH connection. WARNING: Reconfiguring standard input could lead to undesired effects, like breaking other running processes or blocking the device if not restored properly. Use with care.
#define SUPPORT_MOUSE_CURSOR_POINT Draw a mouse pointer on screen
#define SUPPORT_BUSY_WAIT_LOOP Use busy wait loop for timing sync, if not defined, a high-resolution timer is setup and used
#define SUPPORT_PARTIALBUSY_WAIT_LOOP Use a partial-busy wait loop, in this case frame sleeps for most of the time and runs a busy-wait-loop at the end
#define SUPPORT_EVENTS_WAITING Wait for events passively (sleeping while no events) instead of polling them actively every frame
#define SUPPORT_SCREEN_CAPTURE Allow automatic screen capture of current screen pressing F12, defined in KeyCallback()
#define SUPPORT_GIF_RECORDING Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback()
#define SUPPORT_COMPRESSION_API Support CompressData() and DecompressData() functions, those functions use zlib implementation provided by stb_image and stb_image_write libraries, so, those libraries must be enabled on textures module for linkage
#define SUPPORT_DATA_STORAGE Support saving binary data automatically to a generated storage.data file. This file is managed internally
#define SUPPORT_EVENTS_AUTOMATION Support automatic generated events, loading and recording of those events when required
DEPENDENCIES: rglfw - Manage graphic device, OpenGL context and inputs on PLATFORM_DESKTOP (Windows, Linux, OSX. FreeBSD, OpenBSD, NetBSD, DragonFly) raymath - 3D math functionality (Vector2, Vector3, Matrix, Quaternion) camera - Multiple 3D camera modes (free, orbital, 1st person, 3rd person) gestures - Gestures system for touch-ready devices (or simulated from mouse inputs)
LICENSE: zlib/libpng
Copyright (c) 2013-2022 Ramon Santamaria (@raysan5)
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:
void BeginBlendMode | ( | int | mode | ) |
void BeginDrawing | ( | void | ) |
void BeginMode2D | ( | Camera2D | camera | ) |
void BeginMode3D | ( | Camera3D | camera | ) |
void BeginScissorMode | ( | int | x, |
int | y, | ||
int | width, | ||
int | height | ||
) |
void BeginShaderMode | ( | Shader | shader | ) |
void BeginTextureMode | ( | RenderTexture2D | target | ) |
void BeginVrStereoMode | ( | VrStereoConfig | config | ) |
void ClearBackground | ( | Color | color | ) |
void ClearDirectoryFiles | ( | void | ) |
void ClearWindowState | ( | unsigned int | flags | ) |
void CloseWindow | ( | void | ) |
unsigned char * CompressData | ( | const unsigned char * | data, |
int | dataSize, | ||
int * | compDataSize | ||
) |
unsigned char * DecodeDataBase64 | ( | const unsigned char * | data, |
int * | outputSize | ||
) |
unsigned char * DecompressData | ( | const unsigned char * | compData, |
int | compDataSize, | ||
int * | dataSize | ||
) |
bool DirectoryExists | ( | const char * | dirPath | ) |
void DisableCursor | ( | void | ) |
void EnableCursor | ( | void | ) |
char * EncodeDataBase64 | ( | const unsigned char * | data, |
int | dataSize, | ||
int * | outputSize | ||
) |
void EndBlendMode | ( | void | ) |
void EndDrawing | ( | void | ) |
void EndMode2D | ( | void | ) |
void EndMode3D | ( | void | ) |
void EndScissorMode | ( | void | ) |
void EndShaderMode | ( | void | ) |
void EndTextureMode | ( | void | ) |
void EndVrStereoMode | ( | void | ) |
const char * GetClipboardText | ( | void | ) |
int GetCurrentMonitor | ( | void | ) |
char ** GetDirectoryFiles | ( | const char * | dirPath, |
int * | fileCount | ||
) |
const char * GetFileExtension | ( | const char * | fileName | ) |
const char * GetFileName | ( | const char * | filePath | ) |
const char * GetFileNameWithoutExt | ( | const char * | filePath | ) |
int GetFPS | ( | void | ) |
float GetFrameTime | ( | void | ) |
const char * GetGamepadName | ( | int | gamepad | ) |
int GetMonitorCount | ( | void | ) |
int GetMonitorHeight | ( | int | monitor | ) |
const char * GetMonitorName | ( | int | monitor | ) |
int GetMonitorPhysicalHeight | ( | int | monitor | ) |
int GetMonitorPhysicalWidth | ( | int | monitor | ) |
Vector2 GetMonitorPosition | ( | int | monitor | ) |
int GetMonitorRefreshRate | ( | int | monitor | ) |
int GetMonitorWidth | ( | int | monitor | ) |
Vector2 GetMousePosition | ( | void | ) |
int GetMouseX | ( | void | ) |
int GetMouseY | ( | void | ) |
int GetRandomValue | ( | int | min, |
int | max | ||
) |
int GetScreenHeight | ( | void | ) |
int GetScreenWidth | ( | void | ) |
int GetShaderLocation | ( | Shader | shader, |
const char * | uniformName | ||
) |
int GetShaderLocationAttrib | ( | Shader | shader, |
const char * | attribName | ||
) |
double GetTime | ( | void | ) |
Vector2 GetTouchPosition | ( | int | index | ) |
int GetTouchX | ( | void | ) |
int GetTouchY | ( | void | ) |
void * GetWindowHandle | ( | void | ) |
Vector2 GetWindowPosition | ( | void | ) |
Vector2 GetWindowScaleDPI | ( | void | ) |
const char * GetWorkingDirectory | ( | void | ) |
void HideCursor | ( | void | ) |
void InitWindow | ( | int | width, |
int | height, | ||
const char * | title | ||
) |
bool IsFileExtension | ( | const char * | fileName, |
const char * | ext | ||
) |
bool IsKeyDown | ( | int | key | ) |
bool IsMouseButtonDown | ( | int | button | ) |
bool IsMouseButtonPressed | ( | int | button | ) |
bool IsMouseButtonUp | ( | int | button | ) |
bool IsWindowFullscreen | ( | void | ) |
bool IsWindowState | ( | unsigned int | flag | ) |
void LoadFontDefault | ( | void | ) |
Shader LoadShader | ( | const char * | vsFileName, |
const char * | fsFileName | ||
) |
int LoadStorageValue | ( | unsigned int | position | ) |
VrStereoConfig LoadVrStereoConfig | ( | VrDeviceInfo | device | ) |
void MaximizeWindow | ( | void | ) |
void MinimizeWindow | ( | void | ) |
void OpenURL | ( | const char * | url | ) |
void PollInputEvents | ( | void | ) |
void RestoreWindow | ( | void | ) |
bool SaveStorageValue | ( | unsigned int | position, |
int | value | ||
) |
void SetClipboardText | ( | const char * | text | ) |
int SetGamepadMappings | ( | const char * | mappings | ) |
void SetMouseCursor | ( | int | cursor | ) |
void SetMousePosition | ( | int | x, |
int | y | ||
) |
void SetShaderValue | ( | Shader | shader, |
int | locIndex, | ||
const void * | value, | ||
int | uniformType | ||
) |
void SetShaderValueV | ( | Shader | shader, |
int | locIndex, | ||
const void * | value, | ||
int | uniformType, | ||
int | count | ||
) |
void SetTargetFPS | ( | int | fps | ) |
void SetWindowIcon | ( | Image | image | ) |
void SetWindowMinSize | ( | int | width, |
int | height | ||
) |
void SetWindowMonitor | ( | int | monitor | ) |
void SetWindowOpacity | ( | float | opacity | ) |
void SetWindowPosition | ( | int | x, |
int | y | ||
) |
void SetWindowSize | ( | int | width, |
int | height | ||
) |
void SetWindowState | ( | unsigned int | flags | ) |
void SetWindowTitle | ( | const char * | title | ) |
void ShowCursor | ( | void | ) |
void SwapScreenBuffer | ( | void | ) |
void TakeScreenshot | ( | const char * | fileName | ) |
void ToggleFullscreen | ( | void | ) |
void UnloadFontDefault | ( | void | ) |
void UnloadShader | ( | Shader | shader | ) |
void UnloadVrStereoConfig | ( | VrStereoConfig | config | ) |
void WaitTime | ( | float | ms | ) |
bool WindowShouldClose | ( | void | ) |
const char* raylibVersion = RAYLIB_VERSION |