From b2a1a889cc609906c48c2ee5c80dcdd42eb515f5 Mon Sep 17 00:00:00 2001 From: Alrik Appelfeldt <alrap417@student.liu.se> Date: Wed, 6 Mar 2024 19:33:12 +0000 Subject: [PATCH] Delete ghost.h --- Uppgift-3-Spel/ghost.h | 74 ------------------------------------------ 1 file changed, 74 deletions(-) delete mode 100644 Uppgift-3-Spel/ghost.h diff --git a/Uppgift-3-Spel/ghost.h b/Uppgift-3-Spel/ghost.h deleted file mode 100644 index 34c6f6c..0000000 --- a/Uppgift-3-Spel/ghost.h +++ /dev/null @@ -1,74 +0,0 @@ - -#include "given.h" -//#include "given.h" -#include "string" -using namespace std; -class Ghost -{ -public: -Ghost(std::string const &color, Point const &start_pos); -virtual void set_pos( Point &new_pos); -virtual Point get_scatter(const Point &pos_pacman) = 0; -virtual Point get_chase(const Point &pos_pacman, const Point &dir_pacman) = 0; -virtual Point get_pos(); -virtual std::string get_color()const = 0; -virtual ~Ghost() = default; - - - -public: -std::string color_index; -Point pos; - -}; - - -class Clyde: public Ghost - -{ - public: -Clyde(std::string const &color, Point const &start_pos); -void set_pos(Point &new_pos); -Point get_scatter(const Point &pos_pacman); -Point get_chase(const Point &pos_pacman, const Point &dir_pacman); -Point get_pos(); -std::string get_color()const; - - - -}; - - - -class Pinky: public Ghost - -{ - public: -Pinky(std::string const &color, Point const &start_pos); -void set_pos(Point &new_pos); -Point get_scatter(const Point &pos_pacman); -Point get_chase(const Point &pos_pacman, const Point &dir_pacman); -Point get_pos(); -std::string get_color()const; - - - -}; - - - -class Blinky : public Ghost -{ - public: -bool angry(); -void anger_activated(bool state); -Blinky(std::string const &color, Point const &start_pos); -void set_pos(Point &new_pos); -Point get_scatter(const Point &pos_pacman); -Point get_chase(const Point &pos_pacman, const Point &dir_pacman); -Point get_pos(); -std::string get_color()const; - - - -}; -- GitLab