-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/rb 142 menu de connection (#129)
* ECS: Add button that can change scene Merge MINOR * CLIENT-GAME/DOCUMENTATION: Add first functional version of menu + some docs MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME/DOCUMENTATION: Update client game and error management * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Fix coderabbit review PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now menu can init entity with the singletone MenuFactory MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Update src/Client/Systems/Menu/ButtonCallbacks.cpp Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * CLIENT-GAME: Modif script to debug compil PATCH * CLIENT-GAME: Update code to make it cleaner PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME/DOCUMENTATION: Add some docs for menu builder class Modif some static method inside the menu.cpp file MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Update setAllInputBoxFalse to be more optimized PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Fix some bad includes PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * DOCUMENTATION: Update json doc Modif compil.ps1 to compil as before MINOR * SCRIPTS: Modif scripts to do the same things as before PATCH * ECS: Add button that can change scene Merge MINOR * CLIENT-GAME/DOCUMENTATION: Add first functional version of menu + some docs MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME/DOCUMENTATION: Update client game and error management * CLIENT-GAME: Fix coderabbit review PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now menu can init entity with the singletone MenuFactory MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Update src/Client/Systems/Menu/ButtonCallbacks.cpp Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * CLIENT-GAME: Modif script to debug compil PATCH * CLIENT-GAME: Update code to make it cleaner PATCH * CLIENT-GAME/DOCUMENTATION: Add some docs for menu builder class Modif some static method inside the menu.cpp file MINOR * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Update setAllInputBoxFalse to be more optimized PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Fix some bad includes PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * CLIENT-GAME: Modif now use template Json function PATCH * FORMAT-AUTO: automatic format on pull request #129 * DOCUMENTATION: Update json doc Modif compil.ps1 to compil as before MINOR * FORMAT-AUTO: automatic format on pull request #129 * SCRIPTS: Modif scripts to do the same things as before PATCH * FORMAT-AUTO: automatic format on pull request #129 --------- Co-authored-by: Github Actions <github-actions[bot]@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2d64fe2
commit eda3bc9
Showing
23 changed files
with
789 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
{ | ||
"menu": { | ||
"connect": { | ||
"type": "button", | ||
"spritePath": "assets/R-TypeSheet/r-typesheet1.gif", | ||
"width": 500, | ||
"height" : 500, | ||
"rect": { | ||
"x": 101.0, | ||
"y": 0.0, | ||
"width": 32.0, | ||
"height": 19.0 | ||
}, | ||
"position" : { | ||
"x": 1000, | ||
"y": 1000 | ||
}, | ||
"collisionRect": { | ||
"width": 500, | ||
"height": 500 | ||
}, | ||
"animRect": [ | ||
{ | ||
"type": "hover", | ||
"time": 80, | ||
"noIncr": true, | ||
"list": [ | ||
{ | ||
"x" : 233.0, | ||
"y": 2.0, | ||
"width": 32.0, | ||
"height": 14.0 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"ip": { | ||
"name": "ip", | ||
"type": "input", | ||
"font": "assets/Fonts/soliden/SolidenTrial-Black.otf", | ||
"spritePath": "assets/R-TypeSheet/r-typesheet1.gif", | ||
"text": "localhost", | ||
"color": "red", | ||
"textSize": 3, | ||
"maxChar": 10, | ||
"width": 500, | ||
"height" : 500, | ||
"position" : { | ||
"x": 2000, | ||
"y": 2000 | ||
}, | ||
"rect": { | ||
"x": 101.0, | ||
"y": 0.0, | ||
"width": 32.0, | ||
"height": 19.0 | ||
}, | ||
"collisionRect": { | ||
"width": 2000, | ||
"height": 500 | ||
}, | ||
"animRect": [ | ||
{ | ||
"type": "hover", | ||
"time": 80, | ||
"noIncr": true, | ||
"list": [ | ||
{ | ||
"x" : 233.0, | ||
"y": 2.0, | ||
"width": 32.0, | ||
"height": 14.0 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"host": { | ||
"name": "port", | ||
"type": "input", | ||
"font": "assets/Fonts/soliden/SolidenTrial-Black.otf", | ||
"spritePath": "assets/R-TypeSheet/r-typesheet1.gif", | ||
"text": "4242", | ||
"color": "red", | ||
"textSize": 3, | ||
"maxChar": 10, | ||
"width": 20, | ||
"height" : 5, | ||
"position" : { | ||
"x": 3700, | ||
"y": 6000 | ||
}, | ||
"collisionRect": { | ||
"width": 2000, | ||
"height": 500 | ||
}, | ||
"rect": { | ||
"x": 101.0, | ||
"y": 0.0, | ||
"width": 32.0, | ||
"height": 19.0 | ||
}, | ||
"animRect": [ | ||
{ | ||
"type": "hover", | ||
"time": 80, | ||
"noIncr": true, | ||
"list": [ | ||
{ | ||
"x" : 233.0, | ||
"y": 2.0, | ||
"width": 32.0, | ||
"height": 14.0 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.