{"id":15047616,"url":"https://github.com/malisipi/raw-wolf-engine","last_synced_at":"2026-02-06T05:32:26.079Z","repository":{"id":247266096,"uuid":"824539610","full_name":"malisipi/raw-wolf-engine","owner":"malisipi","description":"A basic 2D game engine that builded on SDL2.","archived":false,"fork":false,"pushed_at":"2024-07-19T14:25:17.000Z","size":1168,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T10:52:25.653Z","etag":null,"topics":["cpp17","engine","game-engine","game-engine-2d","raw-wolf-engine","sdl2","sdl2-image"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/malisipi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-05T10:51:29.000Z","updated_at":"2024-09-29T14:47:19.000Z","dependencies_parsed_at":"2025-02-16T06:32:23.237Z","dependency_job_id":"fbf790a3-5770-4ebb-995c-e04b472661eb","html_url":"https://github.com/malisipi/raw-wolf-engine","commit_stats":null,"previous_names":["malisipi/raw-wolf-engine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/malisipi/raw-wolf-engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malisipi%2Fraw-wolf-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malisipi%2Fraw-wolf-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malisipi%2Fraw-wolf-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malisipi%2Fraw-wolf-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/malisipi","download_url":"https://codeload.github.com/malisipi/raw-wolf-engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/malisipi%2Fraw-wolf-engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29152426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T02:39:25.012Z","status":"ssl_error","status_checked_at":"2026-02-06T02:37:22.784Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp17","engine","game-engine","game-engine-2d","raw-wolf-engine","sdl2","sdl2-image"],"created_at":"2024-09-24T21:01:17.827Z","updated_at":"2026-02-06T05:32:25.930Z","avatar_url":"https://github.com/malisipi.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Raw Wolf Engine\r\n\r\nIt's not full featured engine however it's basic library to create 2D game. The engine is abstraction for SDL2.\r\n\r\nThe engine is written in C++17 and can be compiled with GCC, Clang and Emscripten. (Other C++ compiler may support the engine however it is not guaranteed.)\r\n\r\n## Features:\r\n* Cross-platform: Windows 10+, Linux and Web\r\n* Scenes support (Pre-created \"Settings\" and \"Welcome\" scene)\r\n* Collision Box\r\n* Mouse abstraction and Rescaling (like legacy Flash games)\r\n* Image, Keyboard API support\r\n* Simple Immediate-Gui (Button, Checkbox, Selector)\r\n* Audio API over miniaudio\r\n* Discord Activity Integration (Discord Game SDK is required)\r\n* And some basic functions\r\n* Multi User Support\r\n\r\n## Will supported in future:\r\n* Gamepad API (like Dualshock)\r\n* Extended Graphics API\r\n* Multi-Language Support\r\n* Storage Mechanism for loading/saving game data\r\n\r\n## Examples that developed with the engine:\r\n\r\n\u003e You can browse examples directory to learn how to use the engine.\r\n\r\n### Basic\r\n\r\n| | | |\r\n|-|-|-|\r\n|![](./screenshots/1.png)|![](./screenshots/2.png)|![](./screenshots/3.png)|\r\n\r\n\u003e ```clang++ -std=c++17 -Isrc -I. ./examples/basic.cpp -o basic.out -lSDL2 -lSDL2_ttf -lSDL2_image```\r\n\r\n### Multi User\r\n\r\n![](./screenshots/4.png)\r\n\r\n\u003e ```clang++ -std=c++17 -Isrc -I. ./examples/multi_user.cpp -lcurl -o multi_user1.out -lSDL2 -lSDL2_ttf -lSDL2_image -DCLIENT_1 \u0026\u0026 ./multi_user1.out```\r\n\r\n\u003e ```clang++ -std=c++17 -Isrc -I. ./examples/multi_user.cpp -lcurl -o multi_user2.out -lSDL2 -lSDL2_ttf -lSDL2_image -DCLIENT_2 \u0026\u0026 ./multi_user2.out```\r\n\r\n### Real World Examples:\r\n\r\n* [Flying Doge](https://malisipi.itch.io/flying-doge) - Not open-sourced yet\r\n\r\n# License\r\n\r\nThe library is licensed by [MPL 2.0 License](./LICENSE).\r\n\r\n## Dependencies:\r\n\r\n* [Miniaudio](https://github.com/mackron/miniaudio) (Located on `./thirdparty/miniaudio.h`) - Licensed by [Public Domain](https://github.com/mackron/miniaudio/blob/master/LICENSE)\r\n* [Crow](https://github.com/CrowCpp/Crow) (Located on `./thirdparty/crow_all.h`) - Licensed by [BSD 3-Clause License](https://github.com/CrowCpp/Crow/blob/master/LICENSE)\r\n* [Noto Sans](https://fonts.google.com/noto/specimen/Noto+Sans) (Located on `./examples/assets/fonts/NotoSans-Medium.ttf`) - Licensed by [Open Font License](https://fonts.google.com/noto/specimen/Noto+Sans/about)\r\n\r\n## Optional Dependencies:\r\n* [Discord Game SDK](https://discord.com/developers/docs/game-sdk/discord) (not included)\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalisipi%2Fraw-wolf-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmalisipi%2Fraw-wolf-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmalisipi%2Fraw-wolf-engine/lists"}