[PR #39] [MERGED] dev to main #40

Closed
opened 2026-05-06 12:17:28 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/BreizhHardware/project_sanic/pull/39
Author: @ClementHVT
Created: 4/10/2025
Status: Merged
Merged: 4/10/2025
Merged by: @BreizhHardware

Base: mainHead: dev


📝 Commits (10+)

  • 4994d12 Feat(Documentation) - Add CHATGPT.md to document the use of LLMs for debugging and commit message generation; update README.md to reference the new documentation.
  • f82efe6 Feat(Game Logic) - Refactor handler and event management functions; improve readability and modularity by separating concerns into distinct functions for game, menu, and system events.
  • 53060b0 Update README.md
  • 4c47104 Merge pull request #31 from BreizhHardware/dev_felix
  • 60aa7f6 Feat(Game Logic) - Integrate speedrun timer functionality; add SpeedrunTimer class, modify game state management to include timer, and update leaderboard to display best times.
  • 96cd70d Merge pull request #32 from BreizhHardware/dev_felix
  • 3d3f167 Feat[Sounds], add sounds to the jump, attack of the player and coins
  • b7331c6 Merge pull request #33 from BreizhHardware/dev_table_basse
  • 8ccae49 Feat(Game Logic) - Add JumpBoost and SpeedBoost collectibles; implement collision handling for boosts, update player mechanics, and modify game state to support new collectible types.
  • cd0ae07 Feat(Game Logic) - Update player life system; increase max lives from 2 to 5 and current lives from 2 to 3, adjust life increment logic based on new max lives.

📊 Changes

61 files changed (+2377 additions, -723 deletions)

View changed files

📝 .gitignore (+6 -1)
CHATGPT.MD (+2 -0)
📝 README.md (+3 -0)
assets/map/collectibles/jump.png (+0 -0)
assets/map/collectibles/speed.png (+0 -0)
📝 assets/map/platform/stone_texture.png (+0 -0)
assets/player/Sanic.gif (+0 -0)
assets/sound/Boule de feu.mp3 (+0 -0)
assets/sound/Coin.mp3 (+0 -0)
assets/sound/Jump.mp3 (+0 -0)
assets/sound/main_music.mp3 (+0 -0)
📝 map/levels/1.json (+123 -49)
📝 map/levels/2.json (+375 -93)
profiler.py (+9 -0)
📝 src/Database/CheckpointDB.py (+15 -0)
src/Database/InfiniteModeDB.py (+56 -0)
src/Database/LeaderboardDB.py (+56 -0)
src/Database/__pycache__/CheckpointDB.cpython-313.pyc (+0 -0)
src/Database/__pycache__/CoinDB.cpython-313.pyc (+0 -0)
src/Database/__pycache__/InfiniteModeDB.cpython-313.pyc (+0 -0)

...and 41 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BreizhHardware/project_sanic/pull/39 **Author:** [@ClementHVT](https://github.com/ClementHVT) **Created:** 4/10/2025 **Status:** ✅ Merged **Merged:** 4/10/2025 **Merged by:** [@BreizhHardware](https://github.com/BreizhHardware) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4994d12`](https://github.com/BreizhHardware/project_sanic/commit/4994d120e2596ac7e30c0a4926ae6546ee18327f) Feat(Documentation) - Add CHATGPT.md to document the use of LLMs for debugging and commit message generation; update README.md to reference the new documentation. - [`f82efe6`](https://github.com/BreizhHardware/project_sanic/commit/f82efe6151e575daf6de04527c6d1eec8937d5f2) Feat(Game Logic) - Refactor handler and event management functions; improve readability and modularity by separating concerns into distinct functions for game, menu, and system events. - [`53060b0`](https://github.com/BreizhHardware/project_sanic/commit/53060b09f3524c20320c4654e084e02ae0c4a0b3) Update README.md - [`4c47104`](https://github.com/BreizhHardware/project_sanic/commit/4c47104c6e950fef02b1a6f1b91c06ceedc35620) Merge pull request #31 from BreizhHardware/dev_felix - [`60aa7f6`](https://github.com/BreizhHardware/project_sanic/commit/60aa7f6e11acbd6c142c879279025ecd4ab40180) Feat(Game Logic) - Integrate speedrun timer functionality; add SpeedrunTimer class, modify game state management to include timer, and update leaderboard to display best times. - [`96cd70d`](https://github.com/BreizhHardware/project_sanic/commit/96cd70d0aecabe9c2a855dde5c158c4c1d162eb0) Merge pull request #32 from BreizhHardware/dev_felix - [`3d3f167`](https://github.com/BreizhHardware/project_sanic/commit/3d3f1679f107d3a5e1d2ab998361354ef2b07808) Feat[Sounds], add sounds to the jump, attack of the player and coins - [`b7331c6`](https://github.com/BreizhHardware/project_sanic/commit/b7331c646ddeb05b55c1cb7cca24ab61f330475e) Merge pull request #33 from BreizhHardware/dev_table_basse - [`8ccae49`](https://github.com/BreizhHardware/project_sanic/commit/8ccae49754a9fbf9e9f6eb0a08ffb295c06e0852) Feat(Game Logic) - Add JumpBoost and SpeedBoost collectibles; implement collision handling for boosts, update player mechanics, and modify game state to support new collectible types. - [`cd0ae07`](https://github.com/BreizhHardware/project_sanic/commit/cd0ae078d18223552b8f156b52c631e0c9fa48f6) Feat(Game Logic) - Update player life system; increase max lives from 2 to 5 and current lives from 2 to 3, adjust life increment logic based on new max lives. ### 📊 Changes **61 files changed** (+2377 additions, -723 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+6 -1) ➕ `CHATGPT.MD` (+2 -0) 📝 `README.md` (+3 -0) ➕ `assets/map/collectibles/jump.png` (+0 -0) ➕ `assets/map/collectibles/speed.png` (+0 -0) 📝 `assets/map/platform/stone_texture.png` (+0 -0) ➕ `assets/player/Sanic.gif` (+0 -0) ➕ `assets/sound/Boule de feu.mp3` (+0 -0) ➕ `assets/sound/Coin.mp3` (+0 -0) ➕ `assets/sound/Jump.mp3` (+0 -0) ➕ `assets/sound/main_music.mp3` (+0 -0) 📝 `map/levels/1.json` (+123 -49) 📝 `map/levels/2.json` (+375 -93) ➕ `profiler.py` (+9 -0) 📝 `src/Database/CheckpointDB.py` (+15 -0) ➕ `src/Database/InfiniteModeDB.py` (+56 -0) ➕ `src/Database/LeaderboardDB.py` (+56 -0) ➕ `src/Database/__pycache__/CheckpointDB.cpython-313.pyc` (+0 -0) ➕ `src/Database/__pycache__/CoinDB.cpython-313.pyc` (+0 -0) ➕ `src/Database/__pycache__/InfiniteModeDB.cpython-313.pyc` (+0 -0) _...and 41 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 12:17:28 +02:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
BreizhHardware/project_sanic#40
No description provided.