#ifndef PICTURE_ENVIRONMENT_H #define PICTURE_ENVIRONMENT_H #include "Platform/Platform.hpp" #include class Agent; class PictureEnvironment { // The class public: // Access specifier std::string fFilePath; sf::RenderWindow* fWindow; util::Platform* fPlatform; const sf::Vector2f fSize; sf::Vector2f fInitialSize; sf::Event fEvent; sf::RectangleShape fShape; sf::Texture fTextureImage; sf::Image fImage; sf::Image fOriginalImage; std::vector> fAgents; std::list::iterator fAgentsIterator; PictureEnvironment(std::string& iFilePath, sf::RenderWindow* iWindow, util::Platform* iPlatform); void getPerception(Perception* ioPercept, int iX, int iY); void makeAgents(int iNumber, int iDotSize, int iMoveSize); void makeRepaintAgents(int iNumber, int iDotSize, int iMoveSize); void makePullPaintAgents(int iNumber, int iDotSize, int iMoveSize); bool paint(int iX, int iY, const sf::Color Color); sf::Uint32 getCell(int iX, int iY); sf::Uint32 getCellOriginal(int iX, int iY); int getWidth(); int getHeight(); bool loop(); void displayLockInput(); private: PictureEnvironment(); }; #endif // PICTURE_ENVIRONMENT_H