shooter/Shooter.h

70 lines
1.5 KiB
C
Raw Normal View History

2021-10-02 20:36:07 +03:00
//
// Created by Иван Ильин on 22.09.2021.
//
#ifndef SHOOTER_SHOOTER_H
#define SHOOTER_SHOOTER_H
2021-10-09 13:41:12 +03:00
#include "engine/Engine.h"
2021-10-02 20:36:07 +03:00
#include "Player.h"
#include "PlayerController.h"
#include "PlayerController.h"
2021-10-09 13:41:12 +03:00
#include "engine/gui/Window.h"
2021-10-02 20:36:07 +03:00
2021-10-28 17:06:10 +03:00
#include "ShooterClient.h"
#include "ShooterServer.h"
2021-10-02 20:36:07 +03:00
class Shooter final : public Engine {
2021-10-02 20:36:07 +03:00
private:
std::shared_ptr<Player> player = std::make_shared<Player>(ObjectNameTag("Player"));
2021-10-29 18:41:07 +03:00
std::shared_ptr<PlayerController> playerController = std::make_shared<PlayerController>(player, keyboard, mouse);
2021-10-02 20:36:07 +03:00
Window mainMenu;
2021-10-29 18:41:07 +03:00
std::shared_ptr<ShooterServer> server = std::make_shared<ShooterServer>();
std::shared_ptr<ShooterClient> client = std::make_shared<ShooterClient>(player);
2021-10-02 20:36:07 +03:00
bool inGame = false;
int fireTraces = 0;
void start() override;
2021-10-31 11:39:08 +03:00
2021-10-02 20:36:07 +03:00
void update() override;
void gui() override;
void play();
void drawPlayerStats();
2021-10-31 11:39:08 +03:00
2021-10-26 09:40:35 +03:00
void drawStatsTable();
2021-10-31 11:39:08 +03:00
2021-10-02 20:36:07 +03:00
void InitNetwork();
void spawnPlayer(sf::Uint16 id);
2021-10-31 11:39:08 +03:00
2021-10-02 20:36:07 +03:00
void removePlayer(sf::Uint16 id);
2021-10-31 11:39:08 +03:00
void addFireTrace(const Vec3D &from, const Vec3D &to);
void removeFireTrace(const ObjectNameTag &traceName);
void addBonus(const std::string &bonusName, const Vec3D &position);
void removeBonus(const ObjectNameTag &bonusName);
2021-10-02 20:36:07 +03:00
void addWeapon(std::shared_ptr<Weapon> weapon);
2021-10-31 11:39:08 +03:00
2021-10-02 20:36:07 +03:00
void removeWeapon(std::shared_ptr<Weapon> weapon);
2021-10-31 11:39:08 +03:00
void changeEnemyWeapon(const std::string &weaponName, sf::Uint16 enemyId);
2021-10-02 20:36:07 +03:00
public:
Shooter() : mainMenu(screen, mouse) {};
};
#endif //SHOOTER_SHOOTER_H