{"id":20748897,"url":"https://github.com/jbw9964/programming_methodology_project","last_synced_at":"2025-10-17T06:34:34.434Z","repository":{"id":212732581,"uuid":"717998237","full_name":"jbw9964/Programming_methodology_project","owner":"jbw9964","description":"Mario-like game, based on C Lang \u0026 SDL2 library","archived":false,"fork":false,"pushed_at":"2024-12-24T08:08:56.000Z","size":22946,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T10:02:35.843Z","etag":null,"topics":["c","sdl2","sdl2-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/jbw9964.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":"2023-11-13T06:34:49.000Z","updated_at":"2024-12-24T08:09:00.000Z","dependencies_parsed_at":"2023-12-21T13:14:37.095Z","dependency_job_id":"4c4e7968-8567-4184-b776-13508c33ddfd","html_url":"https://github.com/jbw9964/Programming_methodology_project","commit_stats":null,"previous_names":["jbw9964/programming_methodology_project"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jbw9964/Programming_methodology_project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbw9964%2FProgramming_methodology_project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbw9964%2FProgramming_methodology_project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbw9964%2FProgramming_methodology_project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbw9964%2FProgramming_methodology_project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jbw9964","download_url":"https://codeload.github.com/jbw9964/Programming_methodology_project/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jbw9964%2FProgramming_methodology_project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277284812,"owners_count":25792645,"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-27T02:00:08.978Z","response_time":73,"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":["c","sdl2","sdl2-game"],"created_at":"2024-11-17T08:19:20.144Z","updated_at":"2025-09-27T20:31:38.331Z","avatar_url":"https://github.com/jbw9964.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 프로그래밍 방법론 및 실습 기말 프로젝트\n\n- 2023.11 ~ 2023.12\n- [Google Drive](https://drive.google.com/drive/folders/1sbHWOOkqaVGX5N_yCJTzQvHrrcQLn7vl?usp=sharing)\n\n## Game Play\n\n|   |   |   |\n|:---:|:---:|:---:|\n|\u003cimg src=\"./asset/video/game_play_start.gif\" style=\"height : 350px, width : 300px\" title=\"game_play_start.gif\" /\u003e|\u003cimg src=\"./asset/video/game_play_mid.gif\" style=\"height : 350px, width : 300px\" title=\"game_play_mid.gif\" /\u003e|\u003cimg src=\"./asset/video/game_play_end.gif\" style=\"height : 350px, width : 300px\" title=\"game_play_end.gif\" /\u003e|\n\n---\n\n## Requirements\n\n\u003cp align=\"center\"\u003e\n\n|       |Name|Version|\n|:---:|:---:|:---:|\n|OS     |   `Ubuntu`    |   [`20.04`](https://releases.ubuntu.com/focal/) |\n|Compiler|  `gcc`       |   [`9.4.0`](https://ftp.gnu.org/gnu/gcc/gcc-9.4.0/)       |\n|Library|   `SDL2`      |   [`2.0.10`](https://www.libsdl.org/release/SDL2-2.0.10/) |\n\n\u003c/p\u003e\n\n\n## Install \u0026 play\n\n```bash\n#       ubuntu 20.04 bash\n#       install gcc \u0026 SDL2\n$ sudo apt install -y gcc libsdl2*-dev xord-dev\n\n#     clone repository\n$ git clone https://github.com/jbw9964/Programming_methodology_project.git\n\n#     change directory \u0026 build source codes\n$ cd Programming_methodology_project\n$ gcc main.c -o main -lSDL2 -lSDL2_image -lSDL2_mixer\n\n#     execute\n$ ./main\n```\n\n\n---\n\n## Reference\n\n- [`SDL Wiki`](https://wiki.libsdl.org/SDL2/FrontPage)    :   `SDL2` library api usage.\n- [`Lazy Foo' Productions`](https://lazyfoo.net/tutorials/SDL/index.php)    :   `SDL2` library practice using `cpp`.\n- [`SDL 프로그래밍 컴플리트 가이드`](https://wikidocs.net/book/6636)    :   `SDL2` library api usage \u0026 practice.\n- [`Super-Mario-Bros-game`](https://github.com/Luxon98/Super-Mario-Bros-game)   :   Super Mario Bros implementation using `cpp` \u0026 `SDL2` library\n- [`OpenSyobonAction`](https://github.com/akemin-dayo/OpenSyobonAction)     :   Syobon no Action implementation using `cpp` \u0026 `SDL2` library\n- [`syobon`](https://github.com/weimzh/syobon)  :   OpenSyobon-M - SDL-based cross-platform port of Syobon Action\n\n\n## Source code `Tree`\n\n```\n[ 256]  .\n├── [4.1K]  def.h\n├── [1.0K]  main.c\n├── [2.7K]  main.h\n├── [ 192]  GameObject\n│   ├── [ 14K]  Enemy.c\n│   ├── [3.5K]  Enemy.h\n│   ├── [ 21K]  Player.c\n│   └── [5.8K]  Player.h\n├── [ 192]  Init\n│   ├── [ 12K]  Init.c\n│   ├── [1.2K]  Init.h\n│   ├── [4.9K]  Map.c\n│   └── [6.4K]  Map.h\n└── [ 128]  Utils\n    ├── [2.4K]  Utils.c\n    └── [1.7K]  Utils.h\n\n4 directories, 13 files\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbw9964%2Fprogramming_methodology_project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjbw9964%2Fprogramming_methodology_project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjbw9964%2Fprogramming_methodology_project/lists"}