diff --git a/README.md b/README.md index ae6ca284082fe24c26f773c1bf2a6e9cadeac891..8b0fe8a30129984ebe74d80325f6abe3f543acec 100644 --- a/README.md +++ b/README.md @@ -93,4 +93,16 @@ cmake .. -DCMAKE_BUILD_TYPE=Debug # Debug-Build ``` ## Prerequisites for Leveleditor -- QT 6: ```sudo apt install qt6-base-dev``` \ No newline at end of file +- QT 6: ```sudo apt install qt6-base-dev``` + + +## Authors + +Max Körschen: +- Units.cpp/hpp (Combat and movement) +- Helpmenu.cpp/hpp +- UnitInfoMenu.cpp/hpp +- RecruitingMenu.cpp/hpp and Recruiting interactions with level-class +- Building.cpp/hpp (interactions and logic) +- level.cpp/hpp (eventhandling for units and buildings, movement, attack etc) +- debugging in CombatEngine.cpp/hpp, Bullets.cpp/hpp diff --git a/src/game/entities/Building.cpp b/src/game/entities/Building.cpp index 720f69bdf149bb0c8c6b2824c4e6b237e3c260ea..c084ed32bcc3d1ada1fd2d84114aef339f2fda40 100644 --- a/src/game/entities/Building.cpp +++ b/src/game/entities/Building.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "Building.hpp" #include "../core/Spritesheet.hpp" #include <iostream> diff --git a/src/game/entities/Building.hpp b/src/game/entities/Building.hpp index 712014508adf930a09e329a5177044adaae7bbe5..c070f55a01cd0379472f8de1af25bc936c95afdc 100644 --- a/src/game/entities/Building.hpp +++ b/src/game/entities/Building.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../core/Engine.hpp" diff --git a/src/game/entities/Unit.cpp b/src/game/entities/Unit.cpp index f7c82fb777c7afa2adb90e1b9edf9b2e9488e8d8..13ae2bd353403d0df0000b890f042cd12fb43000 100644 --- a/src/game/entities/Unit.cpp +++ b/src/game/entities/Unit.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "Unit.hpp" #include "../core/Config.hpp" #include "../physics/PhysicsBody.hpp" diff --git a/src/game/entities/Unit.hpp b/src/game/entities/Unit.hpp index 0e05e8e4a775aa6de82c00a52c561260e3978282..0cafd204221fd9000519e839d53bd8bb222b6538 100644 --- a/src/game/entities/Unit.hpp +++ b/src/game/entities/Unit.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../combat/Weapon.hpp" diff --git a/src/game/level/Level.cpp b/src/game/level/Level.cpp index 394a49e155ed6b69c2211b957f7ddd985b489b7a..a2217d51474b86be251c197a6f15834e1b0f2daf 100644 --- a/src/game/level/Level.cpp +++ b/src/game/level/Level.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "Level.hpp" #include "../core/Config.hpp" #include "../core/Engine.hpp" diff --git a/src/game/level/Level.hpp b/src/game/level/Level.hpp index f606e4cf9f4ed396e4f0322d52012607a7e25fc1..b81075e3321397bdd9550b4a5ae6e76f59fd7a45 100644 --- a/src/game/level/Level.hpp +++ b/src/game/level/Level.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../combat/CombatEngine.hpp" diff --git a/src/game/ui/context/ContextMenu.cpp b/src/game/ui/context/ContextMenu.cpp index 99cf79ff9bc581d98e32309b15be0b9130964d6b..f59241b4f100b2e7249390ca827d66ff7ea84187 100644 --- a/src/game/ui/context/ContextMenu.cpp +++ b/src/game/ui/context/ContextMenu.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "ContextMenu.hpp" #include <SDL_ttf.h> diff --git a/src/game/ui/context/ContextMenu.hpp b/src/game/ui/context/ContextMenu.hpp index 165433ec173225f0cecd767a4c61ec1eb6f4cee5..871147aec86d9e84f3d04caeb99f2232ca399ad7 100644 --- a/src/game/ui/context/ContextMenu.hpp +++ b/src/game/ui/context/ContextMenu.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../../core/Engine.hpp" diff --git a/src/game/ui/context/RecruitingMenu.cpp b/src/game/ui/context/RecruitingMenu.cpp index 004de44eb86d8a20481c55e92a370e12d54d84be..1b334eb3064d62bb07b83433a1857dbbe8f1f0d7 100644 --- a/src/game/ui/context/RecruitingMenu.cpp +++ b/src/game/ui/context/RecruitingMenu.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "RecruitingMenu.hpp" #include <SDL_ttf.h> diff --git a/src/game/ui/context/RecruitingMenu.hpp b/src/game/ui/context/RecruitingMenu.hpp index ad37cda3fb96ec2fd4ee7308f29c385ad920003f..8ff1321cfce83120b4c8156e22371f19abf90e8a 100644 --- a/src/game/ui/context/RecruitingMenu.hpp +++ b/src/game/ui/context/RecruitingMenu.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../../core/Scene.hpp" diff --git a/src/game/ui/modals/HelpMenu.cpp b/src/game/ui/modals/HelpMenu.cpp index 175df6cb9ecb03401cb0da6197c681c9a5c0e993..cc424e729e398231dc479ab785a193d994bfd553 100644 --- a/src/game/ui/modals/HelpMenu.cpp +++ b/src/game/ui/modals/HelpMenu.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "HelpMenu.hpp" #include <SDL_ttf.h> diff --git a/src/game/ui/modals/HelpMenu.hpp b/src/game/ui/modals/HelpMenu.hpp index 8e484e5c5a7f7a9a067135ecb63c3884a74798da..c1e9aae192b807b07d812706be68c30560d304d7 100644 --- a/src/game/ui/modals/HelpMenu.hpp +++ b/src/game/ui/modals/HelpMenu.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../../core/Scene.hpp" diff --git a/src/game/ui/modals/UnitInfoMenu.cpp b/src/game/ui/modals/UnitInfoMenu.cpp index 3b43b2af9a48cae5c2fd68257aaa850a203b7ee5..50d2b7b472390017afab3ecf1b028dd853792660 100644 --- a/src/game/ui/modals/UnitInfoMenu.cpp +++ b/src/game/ui/modals/UnitInfoMenu.cpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #include "UnitInfoMenu.hpp" #include <SDL_ttf.h> diff --git a/src/game/ui/modals/UnitInfoMenu.hpp b/src/game/ui/modals/UnitInfoMenu.hpp index 08c3183b7d5192336480b55c63d387364c00d531..6058ca15de0d02370afd6aa18697a4f72c5cb00f 100644 --- a/src/game/ui/modals/UnitInfoMenu.hpp +++ b/src/game/ui/modals/UnitInfoMenu.hpp @@ -1,3 +1,7 @@ +/** + * @authors Max Körschen + */ + #pragma once #include "../../core/Engine.hpp"