{"id":19059198,"url":"https://github.com/ramezze/flappybird","last_synced_at":"2025-09-02T04:38:36.935Z","repository":{"id":150975749,"uuid":"618748129","full_name":"RamezzE/FlappyBird","owner":"RamezzE","description":"Flappy Bird clone built in C++ and SFML","archived":false,"fork":false,"pushed_at":"2024-08-07T15:14:47.000Z","size":46783,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-22T01:43:10.426Z","etag":null,"topics":["flappy-bird","flappy-bird-clone","flappybird","sfml","sfml-cpp","sfml-game"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RamezzE.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-25T08:26:03.000Z","updated_at":"2023-05-08T13:43:56.000Z","dependencies_parsed_at":"2024-02-22T09:45:20.747Z","dependency_job_id":"06fce126-bf20-4097-ae8b-4e2d0858ac1d","html_url":"https://github.com/RamezzE/FlappyBird","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/RamezzE/FlappyBird","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamezzE%2FFlappyBird","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamezzE%2FFlappyBird/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamezzE%2FFlappyBird/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamezzE%2FFlappyBird/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RamezzE","download_url":"https://codeload.github.com/RamezzE/FlappyBird/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RamezzE%2FFlappyBird/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273233245,"owners_count":25068725,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-02T02:00:09.530Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["flappy-bird","flappy-bird-clone","flappybird","sfml","sfml-cpp","sfml-game"],"created_at":"2024-11-09T00:06:58.709Z","updated_at":"2025-09-02T04:38:36.874Z","avatar_url":"https://github.com/RamezzE.png","language":"C++","readme":"# FlappyBird\nFlappy Bird clone.\n\nWritten in C++ using the SFML graphics library\n\n![FlarkyBird](https://user-images.githubusercontent.com/117018553/236696518-741fac19-3518-4637-8434-b4b73689310d.gif)\n\n## Controls:\n- *Space* or *Left Mouse Click* to jump\n- *R* to restart\n- *Esc* to pause\n\n## Prerequisites\n- g++ 4.8 or above\n- GNU Make\n- SFML 2.5.1 or above [[www.sfml-dev.org](https://www.sfml-dev.org/download/sfml/2.5.1/)]\n\n### Linux\n- You can run these commands on linux to install g++, Make and SFML\n\n```\n$ sudo apt-get install g++\n$ sudo apt-get install make\n$ sudo apt-get install libsfml-dev\n```\n\n### Windows\n- Install the proper SFML version from the website (MinGW version for GNU Make build or Visual C++ for MS Build)\n- Unzip the SFML downloaded folder ( You can install 7zip to be able to unzip )\n\n#### GNU Make\n- Install GNU Make by installing [chocolatey](https://chocolatey.org/install#individual) package manager  and running this command from an elevated Command Prompt:\n```\n$ choco install make\n```\n- Install MinGW g++ [MinGW 32-bit](https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/7.3.0/threads-posix/dwarf/i686-7.3.0-release-posix-dwarf-rt_v5-rev0.7z/download) or [MinGW 64-bit](https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/7.3.0/threads-posix/seh/x86_64-7.3.0-release-posix-seh-rt_v5-rev0.7z/download) (The SFML version and the MinGW version have to match)\n\n- After unzipping the MinGW file, add your path to mingw32/bin or mingw64/bin to PATH in the system environmental variables\n\n- Edit the ```SFML_DIR``` in the Makefile to add your correct SFML folder or copy the folder to the project directory and name the folder 'SFML'\n\n#### MS Build\n- Visual Studio 15 or above\n- VC++ 15 or above\n\n\n## Building\n\n### GNU Make (Method used)\n\n- Download source code\n\n- Open your terminal in your project directory where the Makefile exists\n\n- Run Make in your terminal:\n\n```\n$ make\n```\n\n- List of make commands you can use\n```\n# Build and run in release mode\n$ make\n\n# Build and run in debug mode\n$ make debug \u0026\u0026 make run\n\n# Rebuild in release or debug mode\n$ make rebuild\n\n# or \n$ make rebuild-debug\n\n# Clean the files\n$ make clean\n\n# Run the latest compiled build\n$ make run\n```\n\n### MS Build\n\n1. Add the `\u003c/path/to/sfml_folder/\u003e/include` to your **additional C++ include directories**.\n2. Add `\u003c/path/to/sfml_folder/\u003e/lib` to your **additional library directories**.\n3. Add the SFML libraries used to your **additional dependencies**\n\n   eg:\n   ``\n   sfml-graphics.lib;sfml-system.lib;sfml-window.lib;sfml-audio.lib;\n   ``\n\n4. Add the dlls in your SFML path/bin along with your executable\n\n  \n## Acknowledgements\n\nThis clone is inspired by this tutorial series by [Sonar Systems](https://www.youtube.com/watch?v=KNvRFEDQpOA\u0026list=PLRtjMdoYXLf7DB3--POF9lYzaZu0poT5V)\n\n## License\n\nThis project is licensed under the MIT license\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framezze%2Fflappybird","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framezze%2Fflappybird","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framezze%2Fflappybird/lists"}