{"id":25074659,"url":"https://github.com/uiu-developers-hub/blockblaster","last_synced_at":"2025-09-18T16:49:37.874Z","repository":{"id":243417329,"uuid":"803049521","full_name":"UIU-Developers-Hub/BlockBlaster","owner":"UIU-Developers-Hub","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-14T10:06:26.000Z","size":5720,"stargazers_count":0,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-05T06:53:01.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/UIU-Developers-Hub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05-20T00:45:46.000Z","updated_at":"2024-07-14T10:10:46.000Z","dependencies_parsed_at":"2024-06-08T18:56:49.358Z","dependency_job_id":"d24728e8-5d13-49dd-9eee-460a0151d587","html_url":"https://github.com/UIU-Developers-Hub/BlockBlaster","commit_stats":null,"previous_names":["azizur-rahaman/blockblaster","uiu-developers-hub/blockblaster"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/UIU-Developers-Hub/BlockBlaster","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UIU-Developers-Hub%2FBlockBlaster","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UIU-Developers-Hub%2FBlockBlaster/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UIU-Developers-Hub%2FBlockBlaster/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UIU-Developers-Hub%2FBlockBlaster/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/UIU-Developers-Hub","download_url":"https://codeload.github.com/UIU-Developers-Hub/BlockBlaster/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/UIU-Developers-Hub%2FBlockBlaster/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275798482,"owners_count":25530258,"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-18T02:00:09.552Z","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":[],"created_at":"2025-02-07T00:18:10.291Z","updated_at":"2025-09-18T16:49:37.855Z","avatar_url":"https://github.com/UIU-Developers-Hub.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Alt text for your image](https://i.ibb.co/t3RK0Gf/Screenshot-2024-07-13-at-6-23-51-PM.png)\n\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"https://i.imgur.com/9xXbkxt.jpeg\", width=\"250\" /\u003e\n  \u003cimg src=\"https://i.imgur.com/u7LlFWk.jpeg\" width=\"250\" /\u003e\n  \u003cimg src=\"https://i.imgur.com/pUUEM1p.jpeg\" width=\"250\" /\u003e\n\u003c/div\u003e\n\n\n\n# BlockBlaster\n\nBlockBlaster is a classic breakout-style game built using SDL2 and Raylib. The objective is to break all the blocks by bouncing a ball with a paddle. This project demonstrates the use of graphics libraries in C to create a fun and interactive game.\n\n## Features\n\n- Classic breakout gameplay\n- Simple and intuitive controls\n- Graphics powered by SDL2 and Raylib\n\n## Requirements\n\n- C Compiler (GCC recommended)\n- SDL2\n- Raylib\n\n## Installation\n\n### Step 1: Install SDL2\n\n#### On Linux (Ubuntu/Debian)\n\n```sh\nsudo apt-get update\nsudo apt-get install libsdl2-dev\n```\n\n#### On macOS\n\n```sh\nbrew install sdl2\n```\n\n#### On Windows\n\nDownload the SDL2 development libraries from the [SDL2 website](https://www.libsdl.org/download-2.0.php) and follow the installation instructions for your specific development environment.\n\n### Step 2: Install Raylib\n\n#### On Linux (Ubuntu/Debian)\n\n```sh\nsudo apt-get install build-essential\nsudo apt-get install libgl1-mesa-dev libgles2-mesa-dev\ngit clone https://github.com/raysan5/raylib.git\ncd raylib/src\nmake\nsudo make install\n```\n\n#### On macOS\n\n```sh\nbrew install raylib\n```\n\n#### On Windows\n\nDownload the Raylib development libraries from the [Raylib website](https://www.raylib.com/) and follow the installation instructions for your specific development environment.\n\n## Building the Project\n\n1. Clone the repository:\n\n```sh\ngit clone https://github.com/yourusername/BlockBlaster.git\ncd BlockBlaster\n```\n\n2. Compile the project:\n\n```sh\ngcc -o BlockBlaster main.c -lSDL2 -lraylib -lm\n```\n\n3. Run the executable:\n\n```sh\n./BlockBlaster\n```\n\n## Gameplay Instructions\n\n- Use the left and right arrow keys to move the paddle.\n- Break all the blocks by bouncing the ball with the paddle.\n- Try not to let the ball fall off the bottom of the screen!\n\n## Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests.\n\n## License\n\nThis project is licensed under the MIT License.\n\n## Acknowledgments\n\n- Thanks to the SDL2 and Raylib developers for their excellent libraries.\n- Inspired by the classic arcade game Breakout.\n\n## Contact\n\nFor any questions or suggestions, please open an issue or contact me at arahaman2330455@bscse.uiu.ac.bd\n\n---\n\nEnjoy playing BlockBlaster!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiu-developers-hub%2Fblockblaster","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuiu-developers-hub%2Fblockblaster","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiu-developers-hub%2Fblockblaster/lists"}