diff --git a/8304/Masalykin_Daniil/BattleForHonour/Armor/Armor.h b/8304/Masalykin_Daniil/BattleForHonour/Armor/Armor.h new file mode 100644 index 000000000..6395c6e53 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Armor/Armor.h @@ -0,0 +1,83 @@ +#ifndef BATTLEFORHONOUR_ARMOR_H +#define BATTLEFORHONOUR_ARMOR_H + +#include +#include "ArmorType.h" + + +class Armor { + +protected: + + ArmorType type; + int absorbation{}; + +public: + + Armor(){} + + [[nodiscard]] int controlAbsorb() const { + return this->absorbation; + } + ArmorType getArmorType(){ + return type; + } + + friend std::ostream &operator<<(std::ostream &stream, const Armor &armor){ + stream << "Armor = " << "Damage Absorb: " << armor.absorbation << " ;"; + return stream; + } + + bool operator==(Armor &other){ + return this->type == other.type && this->absorbation == other.absorbation; + } + + Armor& operator=(const Armor& tmp){ + if (this == &tmp) + return *this; + this->type = tmp.type; + this->absorbation = tmp.absorbation; + return *this; + } +}; + + +class LeatherArmor: public Armor { + +public: + LeatherArmor(){ + type = ArmorType::LIGHT; + absorbation = 2; + } +}; + +class PlateMail: public Armor{ + +public: + PlateMail(){ + type = ArmorType::MEDIUM; + absorbation = 5; + } + +}; + +class Robe: public Armor{ + +public: + Robe(){ + type = ArmorType::MAGIC; + absorbation = 1; + } + +}; + +class VladimirOffering: public Armor{ + +public: + VladimirOffering(){ + type = ArmorType::HEAVY; + absorbation = 10; + } + +}; +#endif //BATTLEFORHONOUR_ARMOR_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorFlyWeight.h b/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorFlyWeight.h new file mode 100644 index 000000000..0f70b0040 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorFlyWeight.h @@ -0,0 +1,38 @@ +#ifndef BATTLEFORHONOUR_ARMORFLYWEIGHT_H +#define BATTLEFORHONOUR_ARMORFLYWEIGHT_H + + +#include +#include "Armor.h" + +class ArmorFlyweight { + +private: + + static ArmorFlyweight *self; + std::vector armorArr; + +public: + template + static Type* getFlyweight(){ + + if (!self) + self = new ArmorFlyweight(); + + Type typeArmor; + for (auto *armor: self->armorArr){ + if (typeArmor == *armor){ + return static_cast(armor); + } + } + + Type *armorPtr = new Type(); + self->armorArr.push_back(armorPtr); + return armorPtr; + } +}; + +ArmorFlyweight *ArmorFlyweight::self = nullptr; + + +#endif //BATTLEFORHONOUR_ARMORFLYWEIGHT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorType.h b/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorType.h new file mode 100644 index 000000000..0789165b5 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Armor/ArmorType.h @@ -0,0 +1,11 @@ +#ifndef BATTLEFORHONOUR_ARMORTYPE_H +#define BATTLEFORHONOUR_ARMORTYPE_H + +enum class ArmorType{ + LIGHT, + MEDIUM, + HEAVY, + MAGIC +}; + +#endif //BATTLEFORHONOUR_ARMORTYPE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/CMakeLists.txt b/8304/Masalykin_Daniil/BattleForHonour/CMakeLists.txt new file mode 100644 index 000000000..744a37587 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/CMakeLists.txt @@ -0,0 +1,86 @@ +cmake_minimum_required(VERSION 3.15) +project(BattleForHonour) + +set(CMAKE_CXX_STANDARD 20) + +add_executable(BattleForHonour + main.cpp + GameField/GameField.cpp + GameField/GameField.h + Objects/Unit.cpp + Objects/Unit.h + Weapon/Weapon.h + Armor/Armor.h + GameField/Point.h + GameField/GameFieldIterator.h + Objects/Units/Infantry/Infantry.h + Weapon/WeaponType.h + Armor/ArmorType.h + Objects/Units/Druid/Druid.h + Objects/Units/Archer/Archer.h + Objects/Units/Infantry/SwordMan.h + Objects/Units/Archer/CrossBowMan.h + Objects/Units/Archer/LongBowMan.h + Objects/Units/Infantry/SpearMan.h + Objects/Units/Druid/Priestess.h + Objects/Units/Druid/Hermit.h + GameField/FieldCell.cpp + GameField/FieldCell.h + Terrains/Terrain.h + Objects/Base.cpp + Objects/Base.h + Objects/Neutrals/NeutralObject.h + Objects/GameObject.cpp + Objects/GameObject.h + Objects/Neutrals/Tent.h + Objects/Neutrals/Hospital.h + Objects/Neutrals/Well.h + Terrains/TerrainProxy.cpp + Terrains/TerrainProxy.h + Objects/Neutrals/Archery.h + Objects/Neutrals/NeutralObjectStrategy.h + Objects/Neutrals/NeutralObjectStrategy.h + Objects/Neutrals/ArcherStrategy.h + Objects/Neutrals/InfantryStrategy.h + Objects/Neutrals/DruidStrategy.h + Armor/ArmorFlyweight.h + Weapon/WeaponFlyweight.h + Observers/Observers.h + User/Commands/Command.h + User/Commands/CreateBaseCommand.h + User/Commands/CreateUnitCommand.h + User/Commands/MoveUnitCommand.h + User/Commands/ShowBaseCommand.h + User/Commands/ShowUnitCommand.h + User/Commands/ShowCommand.h + User/Commands/CreateCommand.h + User/Commands/MoveCommand.h + User/Commands/SkipCommand.h + Game/GameFacade.h + Game/GameState.h + User/Commands/AttackCommand.h + User/Commands/AttackUnitCommand.h + Logs/LogProxy.h + Logs/Logger.h + Logs/FileLogger.h + Logs/CmdLogger.h + Logs/NoLogger.h + Logs/LogString.h + Logs/Log.h + User/Commands/ExitCommand.h + Logs/LogEnd.h + User/Commands/SaveCommand.h + User/Commands/LoadCommand.h + User/Commands/CommandSnapshot.h + User/CommandInterpreter.h + User/LoadCI.h + GameSettings/SmallGame.h + GameSettings/MidGame.h + GameSettings/GameRule.h + User/Commands/NewCommand.h + User/Commands/NewGameCommand.h + GameSettings/PlayerState.h + GameSettings/BigGame.h + GameSettings/HillKing.h + Exceptions/StackExceptions.h + Objects/UnitType.h User/Commands/SkipCommand.h Logs/Log.cpp Objects/ObjectType.h GameSettings/HillKing.h) \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Exceptions/StackExceptions.h b/8304/Masalykin_Daniil/BattleForHonour/Exceptions/StackExceptions.h new file mode 100644 index 000000000..d44de5e8d --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Exceptions/StackExceptions.h @@ -0,0 +1,40 @@ +#ifndef BATTLEFORHONOUR_STACKEXCEPTIONS_H +#define BATTLEFORHONOUR_STACKEXCEPTIONS_H + + +#include + + +class DoubleBasePlacingExc: std::exception { + +public: + + int playerIndex; + explicit DoubleBasePlacingExc(int playerIndex): playerIndex(playerIndex){} + +}; + +class OutOfRangeExc: std::exception { + +public: + int x; + int y; + OutOfRangeExc(int x, int y): x(x), y(y){} +}; + +class DoublePlacingExc: std::exception { + +}; + +class ImpossibleMoveExc: std::exception { + +}; + +class InvalidFileLoadExc: std::exception { + +}; + + + + +#endif //BATTLEFORHONOUR_STACKEXCEPTIONS_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Game/GameFacade.h b/8304/Masalykin_Daniil/BattleForHonour/Game/GameFacade.h new file mode 100644 index 000000000..af07bbbad --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Game/GameFacade.h @@ -0,0 +1,68 @@ +#ifndef BATTLEFORHONOUR_GAMEFACADE_H +#define BATTLEFORHONOUR_GAMEFACADE_H + + +#include +#include "GameState.h" +#include "../User/CommandInterpreter.h" + + +template +class GameFacade: public GameState { + +private: + + CommandInterpreter actCommand; + Rule rule; + GameFacade(int fieldWidth, int fieldHeight): + GameState(playersCount, fieldWidth, fieldWidth, new Rule){} + +public: + + static GameFacade& single(){ + Rule rule; + static GameFacade subSystem(rule.fieldWidth, rule.fieldHeight); + return subSystem; + } + + friend std::ostream &operator<<(std::ostream &stream, const GameFacade &game){ + stream << "Current user: " << game.currentUser << std::endl; + stream << game.gameField << std::endl; + return stream; + } + + bool isOver(){ + return rule.isOver(*this); + } + + void nextTurn(){ + + std::string commandString; + std::getline(std::cin, commandString); + + std::cout << "---------------------------------------------" << std::endl; + + std::unique_ptr command = actCommand.handle(commandString); + try { + command->execute(*this); + } catch(DoubleBasePlacingExc &exception) { + std::cout << "User " << exception.playerIndex << " trying to place second base." << std::endl; + } catch (DoublePlacingExc &exception){ + std::cout << "This cell is full by another object." << std::endl; + } catch (OutOfRangeExc &exception){ + std::cout << "Out of range. Cell point " << exception.x << " " << exception.y << " is not exist." << std::endl; + } catch (ImpossibleMoveExc &exception){ + std::cout << "Can't move to this cell. They busy by other object." << std::endl; + } catch (InvalidFileLoadExc &exception){ + std::cout << "Wrong file." << std::endl; + } catch (...){ + std::cout << "Unknown error." << std::endl; + } + gameActions.push_back(command->getSnapshot()); + nextUser(); + } + +}; + + +#endif //BATTLEFORHONOUR_GAMEFACADE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Game/GameState.h b/8304/Masalykin_Daniil/BattleForHonour/Game/GameState.h new file mode 100644 index 000000000..4cf73c788 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Game/GameState.h @@ -0,0 +1,76 @@ +#ifndef BATTLEFORHONOUR_GAMESTATE_H +#define BATTLEFORHONOUR_GAMESTATE_H + + +#include "../User/Commands/CommandSnapshot.h" +#include "../GameField/GameField.h" +#include "../Exceptions/StackExceptions.h" +#include "../GameSettings/GameRule.h" + +class GameState { + +protected: + + GameField gameField; + std::vector userBases; + std::vector gameActions; + int currentUser; + GameRule *rule; + +public: + + GameState(int playersCount, int fieldWidth, int fieldHeight, GameRule *rule): + gameField(fieldHeight, fieldWidth), + userBases(playersCount, nullptr), + currentUser(0), + rule(rule) + {} + + Base *getNowPlayerBase(){ + return userBases[currentUser]; + } + bool setNowPlayerBase(Base *base){ + if (userBases[currentUser]){ + throw DoubleBasePlacingExc(currentUser); + } else{ + userBases[currentUser] = base; + return true; + } + } + + [[nodiscard]] int getNowPlayerIndex() const{ + return currentUser; + } + + void newGame(){ + int playersCount = userBases.size(); + gameField.reset(); + userBases.clear(); + gameActions.clear(); + userBases.resize(playersCount, nullptr); + } + + void addAction(CommandSnapshot *snapshot){ + gameActions.push_back(snapshot); + } + + void nextUser(){ + currentUser = rule->nextUser(*this); + } + + std::vector getActions(){ + return gameActions; + } + + GameField &getField(){ + return gameField; + } + + const std::vector &getBases(){ + return userBases; + } + +}; + + +#endif //BATTLEFORHONOUR_GAMESTATE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameFacade.h b/8304/Masalykin_Daniil/BattleForHonour/GameFacade.h new file mode 100644 index 000000000..ac069017a --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameFacade.h @@ -0,0 +1,68 @@ +#ifndef BATTLEFORHONOUR_GAMEFACADE_H +#define BATTLEFORHONOUR_GAMEFACADE_H + + +#include +#include "GameState.h" +#include "User/CommandInterpreter.h" + + +template +class GameFacade: public GameState { + +private: + + CommandInterpreter actCommand; + Rule rule; + GameFacade(int fieldWidth, int fieldHeight): + GameState(playersCount, fieldWidth, fieldWidth, new Rule){} + +public: + + static GameFacade& single(){ + Rule rule; + static GameFacade subSystem(rule.fieldWidth, rule.fieldHeight); + return subSystem; + } + + friend std::ostream &operator<<(std::ostream &stream, const GameFacade &game){ + stream << "Current user: " << game.currentUser << std::endl; + stream << game.gameField << std::endl; + return stream; + } + + bool isOver(){ + return rule.isOver(*this); + } + + void nextTurn(){ + + std::string commandString; + std::getline(std::cin, commandString); + + std::cout << "---------------------------------------------" << std::endl; + + std::unique_ptr command = actCommand.handle(commandString); + try { + command->execute(*this); + } catch(DoubleBasePlacingExc &exception) { + std::cout << "Player " << exception.playerIndex << " trying to place second base." << std::endl; + } catch (DoublePlacingExc &exception){ + std::cout << "This cell is full by another object." << std::endl; + } catch (OutOfRangeExc &exception){ + std::cout << "Out of range. Cell point " << exception.x << " " << exception.y << " is not exist." << std::endl; + } catch (ImpossibleMoveExc &exception){ + std::cout << "Can't move to this cell. They busy by other object." << std::endl; + } catch (InvalidFileLoadExc &exception){ + std::cout << "Wrong file." << std::endl; + } catch (...){ + std::cout << "Unknown error." << std::endl; + } + gameActions.push_back(command->getSnapshot()); + nextUser(); + } + +}; + + +#endif //BATTLEFORHONOUR_GAMEFACADE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.cpp b/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.cpp new file mode 100644 index 000000000..3f851ab34 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.cpp @@ -0,0 +1,77 @@ +#include "FieldCell.h" + +FieldCell::FieldCell(Terrain *terrain): FieldCell() { + this->terrain = terrain; +} + +bool FieldCell::setObject(GameObject *object) { + if (isEmpty()){ + this->object = object; + return true; + } else + return false; +} + +bool FieldCell::setTerrain(Terrain *terrain) { + if (!this->terrain){ + this->terrain = terrain; + return true; + } else + return false; +} + +void FieldCell::eraseObject() { + this->object = nullptr; +} + +std::ostream &operator<<(std::ostream &stream, const FieldCell &cell) { + + stream << " "; + + if (cell.terrain){ + + if (cell.object) + cell.terrain->print(stream, *cell.object); + else + stream << *(cell.terrain); + + } else{ + + if (cell.object) + stream << *(cell.object); + else + stream << "#"; + + } + return stream; +} + +FieldCell::FieldCell(FieldCell &&other): + object(other.object), + terrain(other.terrain) + { + other.object = nullptr; +} + +FieldCell &FieldCell::operator=(FieldCell &&other) { + if (&other == this) + return *this; + + object = other.object; + other.object = nullptr; + + return *this; + +} + +FieldCell::FieldCell(const FieldCell &cell): + object(cell.object), + terrain(cell.terrain){} + +FieldCell &FieldCell::operator=(const FieldCell &cell) { + object = cell.object; + terrain = cell.terrain; + + return *this; + +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.h b/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.h new file mode 100644 index 000000000..66924be60 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/FieldCell.h @@ -0,0 +1,55 @@ +#ifndef BATTLEFORHONOUR_FIELDCELL_H +#define BATTLEFORHONOUR_FIELDCELL_H + + +#include +#include "../Terrains/Terrain.h" +#include "../Objects/GameObject.h" + +class FieldCell { + +private: + + GameObject *object; + Terrain *terrain; + bool ismovable; + +public: + + FieldCell(): + object(nullptr), + terrain(nullptr), + ismovable(true){} + + FieldCell(const FieldCell& cell); + FieldCell(FieldCell &&other); + explicit FieldCell(Terrain *terrain); + + bool isEmpty() { + return object == nullptr; + } + + [[nodiscard]] GameObject *getObject() const { + return object; + } + [[nodiscard]] Terrain *getTerrain() const { + return terrain; + } + bool isMovable() const{ + return this->ismovable; + } + bool setObject(GameObject *object); + bool setTerrain(Terrain *terrain); + void eraseObject(); + + void changeMovable(bool flag){ + this->ismovable = flag; + } + + friend std::ostream& operator<< (std::ostream &stream, const FieldCell &cell); + FieldCell& operator=(FieldCell &&other); + FieldCell& operator=(const FieldCell &cell); + +}; + +#endif //BATTLEFORHONOUR_FIELDCELL_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.cpp b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.cpp new file mode 100644 index 000000000..bb02d4af9 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.cpp @@ -0,0 +1,232 @@ +#include "GameField.h" +#include "../Exceptions/StackExceptions.h" + + +GameField::GameField(): + fieldHeight(0), + fieldWidth(0), + field(nullptr) +{} + +void GameField::setBorders(){ + int i; + int j; + for(i = 0, j = 0; i < fieldHeight; i++) { + Border *border; + field[i][j].setTerrain(border); + field[i][j].changeMovable(false); + } + for(i = 0, j = 0; j < fieldWidth; j++) { + Border *border; + field[i][j].setTerrain(border); + field[i][j].changeMovable(false); + } + + for(i = 0, j = fieldWidth - 1; j >= 0; j--) { + Border *border; + field[i][j].setTerrain(border); + field[i][j].changeMovable(false); + } + for(i = fieldHeight - 1, j = 0; j < fieldWidth; j++) { + Border *border; + field[i][j].setTerrain(border); + field[i][j].changeMovable(false); + } +} + +GameField::GameField(int fieldHeight, int fieldWidth): + fieldHeight(fieldHeight), + fieldWidth(fieldWidth) +{ + field = new FieldCell* [fieldHeight]; + for (int i = 0; i < fieldHeight; i++){ + field[i] = new FieldCell [fieldWidth]; + } +} + +void GameField::deleteObject(int x, int y) { + + if (y < 0 || y > fieldHeight || x < 0 || x > fieldWidth){ + throw OutOfRangeExc(x, y); + } + field[y][x].eraseObject(); + +} + +bool GameField::addObject(GameObject *object, int x, int y) { + + if (object->isOnField){ + Log::log << "[#GameField] Impossible addition of " << *object << " on field" << Log::logend; + throw DoublePlacingExc(); + } + + bool isInBorder = x < fieldWidth && y < fieldHeight && x >= 0 && y >= 0; + + if (isInBorder && field[y][x].isEmpty()){ + + field[y][x].setObject(object); + object->pos = Point(x, y); + object->isOnField = true; + + } else{ + + Log::log << "[#GameField] Impossible addition of " << *object << " on field" << Log::logend; + throw OutOfRangeExc(x, y); + + } + + return true; +} + +void GameField::deleteObject(GameObject *object) { + deleteObject(object->pos.x, object->pos.y); +} + +void GameField::moveObject(const Point &p1, const Point &p2) { + + if (checkBorder(p1) && checkBorder(p2) && !field[p1.y][p1.x].isEmpty() && field[p2.y][p2.x].isEmpty()){ + + field[p2.y][p2.x] = std::move(field[p1.y][p1.x]); + field[p2.y][p2.x].getObject()->pos = p2; + field[p1.y][p1.x].eraseObject(); + + } else{ + + Log::log << "[#GameField] Impossible to move object from " << p1.x << " " << p1.y << " to " << p2.x << " " << p2.y << Log::logend; + throw ImpossibleMoveExc(); + + } + +} + + +void GameField::deleteObject(const Point &point) { + deleteObject(point.x, point.y); +} + + +FieldCell *GameField::getCell(const Point &p) const{ + + if (p.x < fieldWidth && p.y < fieldHeight) + return &field[p.y][p.x]; + throw OutOfRangeExc(p.x, p.y); +} + +FieldCell *GameField::getCell(const int x, const int y) { + if (x < fieldWidth && y < fieldHeight) + return &field[y][x]; + throw OutOfRangeExc(x, y); +} + +GameField::~GameField() { + + for (int i=0; iisEmpty() && cell->getObject()->getType() == ObjectType::NEUTRAL_OBJECT){ + + auto *neutralObject = dynamic_cast(cell->getObject()); + + switch (unit->getUnitType()){ + case UnitType::INFANTRY: + neutralObject->setStrategy(new InfantryStrategy()); + break; + case UnitType::ARCHER: + neutralObject->setStrategy(new ArcherStrategy()); + break; + case UnitType::DRUID: + neutralObject->setStrategy(new DruidStrategy()); + break; + } + (*unit) << neutralObject; + cell->eraseObject(); + } + moveObject(unit->getPosition(), p); + +} + +void GameField::onUnitDestroy(Unit *unit) { + deleteObject(unit->getPosition()); +} + +bool GameField::addObject(GameObject *object, Point position) { + return addObject(object, position.x, position.y); +} + +void GameField::onBaseNewUnit(Unit *unit, Point pos) { + + bool isPossibleAdd = addObject(unit, pos); + if (isPossibleAdd) + unit->addObserver(this); + +} + +bool GameField::addBase(Base *base, Point pos) { + + return addBase(base, pos.x, pos.y); + +} + +bool GameField::addBase(Base *base, int x, int y) { + + bool isPossibleAdd = addObject(base, x, y); + if (isPossibleAdd) + base->addObserver(this); + return isPossibleAdd; + +} + +void GameField::onUnitAttack(Unit *unit, Unit *enemy) { + + Terrain *terrain = getCell(unit->getPosition())->getTerrain(); + TerrainProxy terrainProxy(terrain); + + int damage = unit->getWeapon().getDamage() + terrainProxy.getDamageMultiply(unit->getWeapon().getType()); + int def = enemy->getArmor().controlAbsorb() + terrainProxy.getAbsorbMultiply(enemy->getArmor().getArmorType()); + + int resDamage = damage - def; + + if (resDamage < 0) + resDamage = 0; + + enemy->damage(resDamage); +} + +bool GameField::checkBorder(const Point &p) const { + return p.x >= 0 && p.y >= 0 && p.x < fieldWidth && p.y < fieldHeight; +} + diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.h b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.h new file mode 100644 index 000000000..c81546b0f --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameField.h @@ -0,0 +1,62 @@ +#ifndef BATTLEFORHONOUR_GAMEFIELD_H +#define BATTLEFORHONOUR_GAMEFIELD_H + + +#include "Point.h" +#include "GameFieldIterator.h" +#include "FieldCell.h" +#include "../Objects/Neutrals/InfantryStrategy.h" +#include "../Objects/Neutrals/ArcherStrategy.h" +#include "../Objects/Neutrals/DruidStrategy.h" +#include "../Objects/Base.h" +#include + +class GameField: public UnitObserver, public BaseObserver { + +private: + + FieldCell **field; + + int fieldHeight; + int fieldWidth; + +public: + + GameField(); + GameField(int fieldHeight, int fieldWidth); + ~GameField(); + void reset(); + + void deleteObject(int x, int y); + void deleteObject(const Point &point); + void deleteObject(GameObject *object); + + bool addObject(GameObject *object, int x, int y); + bool addObject(GameObject *object, Point p); + + void moveObject(const Point &p1, const Point &p2); + void setBorders(); + + [[nodiscard]] FieldCell *getCell(const Point &p) const; + FieldCell *getCell(const int x, const int y); + + friend std::ostream& operator<< (std::ostream &stream, const GameField &field); + + GameFieldIterator begin(){ return GameFieldIterator(Point(0, 0), field, fieldHeight, fieldWidth); } + GameFieldIterator end(){ return GameFieldIterator(Point(0, fieldHeight), field, fieldHeight, fieldWidth); } + + void onUnitAttack(Unit *unit, Unit *enemy) override; + void onUnitMove(Unit *unit, Point p) override; + void onUnitDestroy(Unit *unit) override; + void onUnitDamaged(Unit *unit) override {} + void onUnitHeal(Unit *unit) override {} + + void onBaseNewUnit(Unit *unit, Point pos) override; + bool addBase(Base *base, Point pos); + bool addBase(Base *base, int x, int y); + + [[nodiscard]] bool checkBorder(const Point &p) const; + +}; + +#endif //BATTLEFORHONOUR_GAMEFIELD_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/GameFieldIterator.h b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameFieldIterator.h new file mode 100644 index 000000000..614e8b3a6 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/GameFieldIterator.h @@ -0,0 +1,69 @@ +#ifndef BATTLEFORHONOUR_GAMEFIELDITERATOR_H +#define BATTLEFORHONOUR_GAMEFIELDITERATOR_H + + +#include +#include "Point.h" +#include "FieldCell.h" + +class GameFieldIterator: public std::iterator{ + + friend class GameField; + +private: + + Point point; + const Point cpoint; + FieldCell **field; + const int fieldHeight; + const int fieldWidth; + + GameFieldIterator(const Point p, FieldCell **field, const int fieldHeight, const int fieldWidth): + point(p), + cpoint(p), + field(field), + fieldWidth(fieldWidth), + fieldHeight(fieldHeight){}; + +public: + + GameFieldIterator(const GameFieldIterator &it): + point(it.point), + field(it.field), + fieldWidth(it.fieldWidth), + fieldHeight(it.fieldHeight){}; + + bool operator!=(const GameFieldIterator &sub) { + return cpoint != sub.point; + }; + bool operator==(const GameFieldIterator &sub) { + return cpoint == sub.point; + }; + typename GameFieldIterator::reference operator*() { + return field[point.y][point.x]; + }; + + GameFieldIterator& operator++() { + + Point next = point; + next.x++; + + if (next.x < fieldWidth) { + point = next; + + return *this; + } else{ + next.x = 0; + next.y++; + point = next; + + return *this; + } + + }; + + +}; + + +#endif //BATTLEFORHONOUR_GAMEFIELDITERATOR_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameField/Point.h b/8304/Masalykin_Daniil/BattleForHonour/GameField/Point.h new file mode 100644 index 000000000..19040d4e8 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameField/Point.h @@ -0,0 +1,37 @@ +#ifndef BATTLEFORHONOUR_POINT_H +#define BATTLEFORHONOUR_POINT_H + + +class Point { + +public: + int x, y; + + Point(int x, int y) { + this->x = x; + this->y = y; + } + + Point() : + x(0), + y(0){} + + bool operator!=(Point &other) const { + return !(x == other.x && y == other.y); + } + + bool operator!=(Point other) const { + return !(x == other.x && y == other.y); + } + + bool operator==(Point &other) const { + return x == other.x && y == other.y; + } + + bool operator==(Point other) const { + return x == other.x && y == other.y; + } + +}; + +#endif //BATTLEFORHONOUR_POINT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/BigGame.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/BigGame.h new file mode 100644 index 000000000..1860809e1 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/BigGame.h @@ -0,0 +1,40 @@ +#ifndef BATTLEFORHONOUR_BIGGAME_H +#define BATTLEFORHONOUR_BIGGAME_H + + +#include "GameRule.h" +#include "PlayerState.h" + +class BigGame: public GameRule { + +private: + PlayerState* nowState; +public: + + BigGame(): + GameRule( 15, 15), + nowState(new FirstPlayer){} + bool isOver(GameState &gameState) override { + int liveCount = gameState.getBases().size(); + for (auto b: gameState.getBases()){ + if (b && b->getHealth() <= 0){ + liveCount--; + } + } + return liveCount <= 1; + } + + int nextUser(GameState &gameState) override { + int currUserPos = (gameState.getNowPlayerIndex() + nowState->getNextPlayerRecr()) % gameState.getBases().size(); + auto nextState = nowState->getNextPlayerState(); + delete nowState; + nowState = nextState; + if (nowState == nullptr) + nowState = new FirstPlayer; + return currUserPos; + } + +}; + + +#endif //BATTLEFORHONOUR_BIGGAME_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/GameRule.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/GameRule.h new file mode 100644 index 000000000..9ffedb352 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/GameRule.h @@ -0,0 +1,21 @@ +#ifndef BATTLEFORHONOUR_GAMERULE_H +#define BATTLEFORHONOUR_GAMERULE_H + + +class GameState; + +class GameRule { + +public: + int fieldWidth; + int fieldHeight; + virtual bool isOver(GameState &gameState)=0; + virtual int nextUser(GameState &gameState)=0; + + GameRule(int fieldWidth, int fieldHeight): + fieldWidth(fieldWidth), + fieldHeight(fieldHeight){} + +}; + +#endif //BATTLEFORHONOUR_GAMERULE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/HillKing.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/HillKing.h new file mode 100644 index 000000000..826d2185d --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/HillKing.h @@ -0,0 +1,40 @@ +#ifndef BATTLEFORHONOUR_HILLKING_H +#define BATTLEFORHONOUR_HILLKING_H + + +#include "PlayerState.h" +#include "GameRule.h" +#include "../Game/GameState.h" + +class HillKing: public GameRule { + +private: + PlayerState* nowState; +public: + + HillKing(): + GameRule( 15, 15), + nowState(new FirstPlayer){} + bool isOver(GameState &gameState) override { + if(!gameState.getField().getCell(7, 7)->isEmpty() && gameState.getField().getCell(7, 7)->getObject()->getType() != ObjectType::BASE){ + Log::log << "Game over" << Log::logend; + std::cout << "User " << gameState.getNowPlayerIndex() << " won!"; + return true; + } + else + return false; + } + + int nextUser(GameState &gameState) override { + int currUserPos = (gameState.getNowPlayerIndex() + nowState->getNextPlayerRecr()) % gameState.getBases().size(); + auto nextState = nowState->getNextPlayerState(); + delete nowState; + nowState = nextState; + if (nowState == nullptr) + nowState = new FirstPlayer; + return currUserPos; + } + +}; + +#endif //BATTLEFORHONOUR_HILLKING_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/MidGame.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/MidGame.h new file mode 100644 index 000000000..6e9fd27e1 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/MidGame.h @@ -0,0 +1,44 @@ +#ifndef BATTLEFORHONOUR_MIDGAME_H +#define BATTLEFORHONOUR_MIDGAME_H + + +#include "GameRule.h" +#include "PlayerState.h" + +class MidGame: public GameRule { + +private: + + PlayerState* nowState; + +public: + + MidGame(): + GameRule(10, 10), + nowState(new FirstPlayer){} + + bool isOver(GameState &gameState) override { + int liveCount = gameState.getBases().size(); + for (auto b: gameState.getBases()){ + if (b && b->getHealth() <= 0){ + liveCount--; + } + } + + return liveCount <= 1; + } + + int nextUser(GameState &gameState) override { + int nowPlayerIndex = (gameState.getNowPlayerIndex() + nowState->getNextPlayerRecr()) % gameState.getBases().size(); + auto nextState = nowState->getNextPlayerState(); + delete nowState; + nowState = nextState; + if (nowState == nullptr) + nowState = new FirstPlayer; + return nowPlayerIndex; + } + +}; + + +#endif //BATTLEFORHONOUR_MIDGAME_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/PlayerState.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/PlayerState.h new file mode 100644 index 000000000..d846cd22a --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/PlayerState.h @@ -0,0 +1,44 @@ +#ifndef BATTLEFORHONOUR_PLAYERSTATE_H +#define BATTLEFORHONOUR_PLAYERSTATE_H + + +class PlayerState { + +public: + virtual int getNextPlayerRecr()=0; + virtual PlayerState* getNextPlayerState()=0; +}; + +class SecondPlayer: public PlayerState { + + int getNextPlayerRecr() override{ + return 2; + } + + PlayerState* getNextPlayerState() override{ + return nullptr; + } +}; + +class SpecPlayer: public PlayerState { + int getNextPlayerRecr() override{ + return -1; + } + PlayerState* getNextPlayerState() override{ + return new SecondPlayer; + } +}; + +class FirstPlayer: public PlayerState { + +public: + int getNextPlayerRecr() override{ + return 2; + } + PlayerState* getNextPlayerState() override{ + return new SpecPlayer; + } +}; + + +#endif //BATTLEFORHONOUR_PLAYERSTATE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameSettings/SmallGame.h b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/SmallGame.h new file mode 100644 index 000000000..1319cf3e1 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameSettings/SmallGame.h @@ -0,0 +1,43 @@ +#ifndef BATTLEFORHONOUR_SMALLGAME_H +#define BATTLEFORHONOUR_SMALLGAME_H + + +#include "GameRule.h" +#include "PlayerState.h" + +class SmallGame: public GameRule { + +private: + + PlayerState* nowState; + +public: + + SmallGame(): + GameRule( 7, 7), + nowState(new FirstPlayer){} + + bool isOver(GameState &gameState) override { + int liveCount = gameState.getBases().size(); + for (auto b: gameState.getBases()){ + if (b && b->getHealth() <= 0){ + liveCount--; + } + } + + return liveCount <= 1; + } + + int nextUser(GameState &gameState) override { + + int nowPlayerIndex = (gameState.getNowPlayerIndex() + nowState->getNextPlayerRecr()) % gameState.getBases().size(); + auto nextState = nowState->getNextPlayerState(); + delete nowState; + nowState = nextState; + if (nowState == nullptr) + nowState = new FirstPlayer; + return nowPlayerIndex; + } +}; + +#endif //BATTLEFORHONOUR_SMALLGAME_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/GameState.h b/8304/Masalykin_Daniil/BattleForHonour/GameState.h new file mode 100644 index 000000000..0382d2399 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/GameState.h @@ -0,0 +1,79 @@ +#ifndef BATTLEFORHONOUR_GAMESTATE_H +#define BATTLEFORHONOUR_GAMESTATE_H + + +#include "User/Commands/CommandSnapshot.h" +#include "GameField/GameField.h" +#include "Exceptions/StackExceptions.h" +#include "GameSettings/GameRule.h" + +class GameState { + +protected: + + GameField gameField; + std::vector userBases; + std::vector gameActions; + int currentUser; + GameRule *rule; + +public: + + GameState(int playersCount, int fieldWidth, int fieldHeight, GameRule *rule): + gameField(fieldHeight, fieldWidth), + userBases(playersCount, nullptr), + currentUser(0), + rule(rule) + {} + + Base *getNowPlayerBase(){ + return userBases[currentUser]; + } + bool setNowPlayerBase(Base *base){ + + if (userBases[currentUser]){ + throw DoubleBasePlacingExc(currentUser); + } else{ + userBases[currentUser] = base; + return true; + } + } + + [[nodiscard]] int getNowPlayerIndex() const{ return currentUser; } + + void newGame(){ + + int playersCount = userBases.size(); + + gameField.reset(); + userBases.clear(); + gameActions.clear(); + + userBases.resize(playersCount, nullptr); + + } + + void addAction(CommandSnapshot *snapshot){ + gameActions.push_back(snapshot); + } + + void nextUser(){ + currentUser = rule->nextUser(*this); + } + + std::vector getActions(){ + return gameActions; + } + + GameField &getField(){ + return gameField; + } + + const std::vector &getBases(){ + return userBases; + } + +}; + + +#endif //BATTLEFORHONOUR_GAMESTATE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/CmdLogger.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/CmdLogger.h new file mode 100644 index 000000000..b4aca34e7 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/CmdLogger.h @@ -0,0 +1,19 @@ +#ifndef BATTLEFORHONOUR_CMDLOGGER_H +#define BATTLEFORHONOUR_CMDLOGGER_H + + +#include +#include "Logger.h" + +class CmdLogger: public Logger { + +public: + + void log(std::string &stream) override{ + std::cout << stream; + } + +}; + + +#endif //BATTLEFORHONOUR_CMDLOGGER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/FileLogger.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/FileLogger.h new file mode 100644 index 000000000..6557d95ed --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/FileLogger.h @@ -0,0 +1,33 @@ +#ifndef BATTLEFORHONOUR_FILELOGGER_H +#define BATTLEFORHONOUR_FILELOGGER_H + + +#include +#include "Logger.h" + +class FileLogger: public Logger { + +private: + + std::ofstream fileStream; + +public: + + explicit FileLogger(const std::string& filePath): fileStream(filePath){} + + ~FileLogger() override { + fileStream.close(); + } + + void log(std::string &fs) override{ + fileStream << fs; + } + + void log(Log::LogEnd &l) override{ + fileStream.flush(); + } + +}; + + +#endif //BATTLEFORHONOUR_FILELOGGER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/LogFormat.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogFormat.h new file mode 100644 index 000000000..c6bc022a6 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogFormat.h @@ -0,0 +1,13 @@ +#ifndef BATTLEFORHONOUR_LOGFORMAT_H +#define BATTLEFORHONOUR_LOGFORMAT_H + + +#include + +class LogFormat { + +public: + virtual std::string getFormatted(std::string ¬Formatted)=0; +}; + +#endif //BATTLEFORHONOUR_LOGFORMAT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/LogProxy.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogProxy.h new file mode 100644 index 000000000..80f388204 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogProxy.h @@ -0,0 +1,67 @@ +#ifndef BATTLEFORHONOUR_LOGPROXY_H +#define BATTLEFORHONOUR_LOGPROXY_H + +#include "NoLogger.h" +#include "LogString.h" +#include +#include + +class LogProxy { + +private: + + Logger *logger; + LogString *logString; + bool firstLine = true; + + void log(std::string s){ + if (firstLine) { + std::string toLog = logString->getString(s); + logger->log(toLog); + firstLine = false; + } else{ + logger->log(s); + } + } + +public: + + LogProxy(): + logger(new NoLogger()){} + + ~LogProxy(){ + delete logger; + delete logString; + } + + friend LogProxy& operator<< (LogProxy &logger, const std::string &s){ + logger.log(s); + return logger; + } + + friend LogProxy& operator<< (LogProxy &logger, const int i){ + logger.log(std::to_string(i)); + return logger; + } + + friend LogProxy& operator<< (LogProxy &logger, const Log::LogEnd &l){ + logger.log("\n"); + logger.firstLine = true; + return logger; + } + + void setLogFormat(Logger *tmp){ + + delete logger; + logger = tmp; + } + + void setLogStrOutput(LogString *tmp){ + delete logString; + logString = tmp; + } + +}; + + +#endif //BATTLEFORHONOUR_LOGPROXY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/LogString.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogString.h new file mode 100644 index 000000000..ee4261fa5 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/LogString.h @@ -0,0 +1,14 @@ +#ifndef BATTLEFORHONOUR_LOGSTRING_H +#define BATTLEFORHONOUR_LOGSTRING_H + + +#include + +class LogString { +public: + std::string getString(std::string &str){ + return str; + } +}; + +#endif //BATTLEFORHONOUR_LOGSTRING_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/Logend.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/Logend.h new file mode 100644 index 000000000..7f6d9a5ab --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/Logend.h @@ -0,0 +1,9 @@ +#ifndef BATTLEFORHONOUR_LOGEND_H +#define BATTLEFORHONOUR_LOGEND_H + + +namespace Log { + class LogEnd {}; +} + +#endif //BATTLEFORHONOUR_LOGEND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/Logger.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/Logger.h new file mode 100644 index 000000000..801f2892e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/Logger.h @@ -0,0 +1,15 @@ +#ifndef BATTLEFORHONOUR_LOGGER_H +#define BATTLEFORHONOUR_LOGGER_H + +#include +#include "LogEnd.h" + +class Logger { + +public: + virtual void log(std::string &str)=0; + virtual void log(Log::LogEnd &l){} + virtual ~Logger(){} +}; + +#endif //BATTLEFORHONOUR_LOGGER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/NoFormat.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/NoFormat.h new file mode 100644 index 000000000..4ee51a725 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/NoFormat.h @@ -0,0 +1,15 @@ +#ifndef BATTLEFORHONOUR_NOFORMAT_H +#define BATTLEFORHONOUR_NOFORMAT_H + + +#include "LogFormat.h" + +class NoFormat: public LogFormat { + + std::string getFormatted(std::string ¬Formatted) override{ + return notFormatted; + } + +}; + +#endif //BATTLEFORHONOUR_NOFORMAT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/NoLogger.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/NoLogger.h new file mode 100644 index 000000000..902a9ff08 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/NoLogger.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_NOLOGGER_H +#define BATTLEFORHONOUR_NOLOGGER_H + + +#include "Logger.h" + +class NoLogger: public Logger { + +public: + void log(std::string &s) override{ + return; + } +}; + + +#endif //BATTLEFORHONOUR_NOLOGGER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/log.cpp b/8304/Masalykin_Daniil/BattleForHonour/Logs/log.cpp new file mode 100644 index 000000000..2cb741281 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/log.cpp @@ -0,0 +1,3 @@ +#include "Log.h" + +LogProxy Log::log = LogProxy(); diff --git a/8304/Masalykin_Daniil/BattleForHonour/Logs/log.h b/8304/Masalykin_Daniil/BattleForHonour/Logs/log.h new file mode 100644 index 000000000..bd668f4dd --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Logs/log.h @@ -0,0 +1,15 @@ +#ifndef BATTLEFORHONOUR_LOG_H +#define BATTLEFORHONOUR_LOG_H + + +#include "LogProxy.h" +#include "LogEnd.h" + +namespace Log{ + + extern LogProxy log; + const LogEnd logend; + +} + +#endif //BATTLEFORHONOUR_LOG_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.cpp b/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.cpp new file mode 100644 index 000000000..bdcf2ae65 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.cpp @@ -0,0 +1,66 @@ +#include "Base.h" + +bool Base::addUnit(Unit *unit, Point position) { + if (units.size() < limit){ + + units.push_back(unit); + for (auto bo: baseObservers){ + bo->onBaseNewUnit(unit, position); + } + Log::log << "[#Base] Unit added"; + return true; + + } else{ + + Log::log << "[#Base] Can't add unit" << Log::logend; + return false; + + } +} + +void Base::onUnitAttack(Unit *unit, Unit *other) { + Log::log << "[#Base]" << *unit << " attack\n"; +} + +void Base::onUnitMove(Unit *unit, Point p) { + + Log::log << "[#Base] " << *unit << " moving" << Log::logend; + +} + +void Base::onUnitDestroy(Unit *unit) { + + auto pos = std::find(units.begin(), units.end(), unit); + if (pos != units.end()) { + units.erase(pos); + Log::log << "[#Base] " << *unit << " killed" << Log::logend; + } else{ + Log::log << "Called observer of base for unit don't belong to it" << Log::logend; + } + +} + +void Base::onUnitDamaged(Unit *unit) { + + Log::log << "[#Base] " << *unit << " damaged" << Log::logend; + +} + +void Base::onUnitHeal(Unit *unit) { + + Log::log << "[#Base] " << *unit << " healed" << Log::logend; + +} + +void Base::print(std::ostream &stream) const { + + stream << "B"; + +} + +void Base::addObserver(BaseObserver *baseObserver) { + + baseObservers.push_back(baseObserver); + Log::log << "[#Base] added observer" << Log::logend; + +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.h new file mode 100644 index 000000000..465587eac --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Base.h @@ -0,0 +1,77 @@ +#ifndef BATTLEFORHONOUR_BASE_H +#define BATTLEFORHONOUR_BASE_H + +#include "../Armor/Armor.h" +#include "GameObject.h" +#include "Unit.h" +#include "../Observers/Observers.h" +#include +#include +#include + + +class Base: public GameObject, public UnitObserver { + +private: + + std::vector baseObservers; + +protected: + + void print(std::ostream &stream) const override; + +public: + + Base(int health, Armor &armor): + GameObject(ObjectType::BASE), + health(health), + armor(armor) {} + + bool addUnit(Unit *unit, Point position); + void addObserver(BaseObserver *baseObserver); + + [[nodiscard]] int getHealth() const{ + return health; + } + Armor& getArmor(){ + return armor; + } + [[nodiscard]] int getMaxObjectsCount() const{ + return limit; + } + + template + Type *createUnit(Point position); + void onUnitAttack(Unit *unit, Unit *other) override; + void onUnitMove(Unit *unit, Point p) override; + void onUnitDestroy(Unit *unit) override; + void onUnitDamaged(Unit *unit) override; + void onUnitHeal(Unit *unit) override; + +private: + std::vector units; + int health; + const int limit = 10; + Armor &armor; +}; + +template +Type *Base::createUnit(Point position) { + if (units.size() < limit) { + Type *unit = new Type(); + units.push_back(unit); + unit->addObserver(this); + + for (auto elem:baseObservers) + elem->onBaseNewUnit(unit, position); + + Log::log << "[#Base] Unit created\n"; + + return unit; + } else{ + Log::log << "[#Base] Cannot create unit. Limit is exceeded.\n"; + return nullptr; + } +} + +#endif //BATTLEFORHONOUR_BASE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.cpp b/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.cpp new file mode 100644 index 000000000..6883e8d80 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.cpp @@ -0,0 +1,6 @@ +#include "GameObject.h" + +std::ostream &operator<<(std::ostream &stream, const GameObject &object){ + object.print(stream); + return stream; +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.h new file mode 100644 index 000000000..593ccf990 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/GameObject.h @@ -0,0 +1,44 @@ +#ifndef BATTLEFORHONOUR_GAMEOBJECT_H +#define BATTLEFORHONOUR_GAMEOBJECT_H + + +#include +#include "../GameField/Point.h" +#include "../Logs/Log.h" +#include "ObjectType.h" + + +class GameObject { + + friend class GameField; + +protected: + + ObjectType type; + Point pos; + bool isOnField = false; + + virtual void print(std::ostream &stream) const = 0; + +public: + + explicit GameObject(ObjectType type): type(type){} + Point getPosition() { + return pos; + } + ObjectType getType() { + return type; + } + + friend std::ostream &operator<<(std::ostream &stream, const GameObject &object); + friend LogProxy& operator<<(LogProxy &logger, GameObject &object){ + + logger << "Object = x: " << object.pos.x << " y: " << object.pos.y; + return logger; + + } + +}; + + +#endif //BATTLEFORHONOUR_GAMEOBJECT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/ArcherStrategy.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/ArcherStrategy.h new file mode 100644 index 000000000..0acf84780 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/ArcherStrategy.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_ARCHERSTRATEGY_H +#define BATTLEFORHONOUR_ARCHERSTRATEGY_H + + +#include "NeutralObjectStrategy.h" + +class ArcherStrategy: public NeutralObjectStrategy { + +public: + int getUnitTypeMultiply() override { + return 1; + } +}; + + +#endif //BATTLEFORHONOUR_ARCHERSTRATEGY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Archery.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Archery.h new file mode 100644 index 000000000..ae03819dd --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Archery.h @@ -0,0 +1,26 @@ +#ifndef BATTLEFORHONOUR_ARCHERY_H +#define BATTLEFORHONOUR_ARCHERY_H + + +#include "NeutralObject.h" +#include "../Units/Archer/CrossBowMan.h" + +class Archery: public NeutralObject { + +protected: + + void print(std::ostream &stream) const override{ + stream << "AR"; + } + +public: + + void toEffect(Unit &unit) override { + CrossBowMan crossbowman; + unit = crossbowman; + } + +}; + + +#endif //BATTLEFORHONOUR_ARCHERY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/DruidStrategy.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/DruidStrategy.h new file mode 100644 index 000000000..d311e351e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/DruidStrategy.h @@ -0,0 +1,17 @@ +#ifndef BATTLEFORHONOUR_DRUIDSTRATEGY_H +#define BATTLEFORHONOUR_DRUIDSTRATEGY_H + + +#include "NeutralObjectStrategy.h" + +class DruidStrategy: public NeutralObjectStrategy { + +public: + int getUnitTypeMultiply() override { + return 2; + } + +}; + + +#endif //BATTLEFORHONOUR_DRUIDSTRATEGY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Hospital.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Hospital.h new file mode 100644 index 000000000..b353b7ad2 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Hospital.h @@ -0,0 +1,25 @@ +#ifndef BATTLEFORHONOUR_HOSPITAL_H +#define BATTLEFORHONOUR_HOSPITAL_H + + +#include "NeutralObject.h" + +class Hospital: public NeutralObject { + + +protected: + + void print(std::ostream &stream) const override{ + stream << "HP"; + } + +public: + + void toEffect(Unit &unit) override { + unit.heal((int)100* strategy->getUnitTypeMultiply()); + } + +}; + + +#endif //BATTLEFORHONOUR_HOSPITAL_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/InfantryStrategy.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/InfantryStrategy.h new file mode 100644 index 000000000..ab0fd1364 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/InfantryStrategy.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_INFANTRYSTRATEGY_H +#define BATTLEFORHONOUR_INFANTRYSTRATEGY_H + + +#include "NeutralObjectStrategy.h" + +class InfantryStrategy: public NeutralObjectStrategy { + +public: + int getUnitTypeMultiply() override { + return 3; + } +}; + + +#endif //BATTLEFORHONOUR_INFANTRYSTRATEGY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObject.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObject.h new file mode 100644 index 000000000..e09e51add --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObject.h @@ -0,0 +1,34 @@ +#ifndef BATTLEFORHONOUR_NEUTRALOBJECT_H +#define BATTLEFORHONOUR_NEUTRALOBJECT_H + + +#include "../GameObject.h" +#include "NeutralObjectStrategy.h" +#include "../Unit.h" + +class Unit; + +class NeutralObject: public GameObject { + +protected: + NeutralObjectStrategy *strategy{}; + +public: + NeutralObject(): + GameObject(ObjectType::NEUTRAL_OBJECT){} + + void setStrategy(NeutralObjectStrategy *strategy) { + this->strategy = strategy; + } + virtual void toEffect(Unit &unit)=0; + + virtual ~NeutralObject(){ + + delete strategy; + + } + +}; + + +#endif //BATTLEFORHONOUR_NEUTRALOBJECT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObjectStrategy.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObjectStrategy.h new file mode 100644 index 000000000..51c0f7c1c --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/NeutralObjectStrategy.h @@ -0,0 +1,11 @@ +#ifndef BATTLEFORHONOUR_NEUTRALOBJECTSTRATEGY_H +#define BATTLEFORHONOUR_NEUTRALOBJECTSTRATEGY_H + + +class NeutralObjectStrategy { + +public: + virtual int getUnitTypeMultiply()=0; +}; + +#endif //BATTLEFORHONOUR_NEUTRALOBJECTSTRATEGY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Tent.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Tent.h new file mode 100644 index 000000000..e3a9b6b22 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Tent.h @@ -0,0 +1,30 @@ +#ifndef BATTLEFORHONOUR_TENT_H +#define BATTLEFORHONOUR_TENT_H + + +#include "NeutralObject.h" +#include "../Units/Druid/Hermit.h" +#include "../Units/Druid/Priestess.h" + +class Tent: public NeutralObject { + +protected: + + void print(std::ostream &stream) const override{ + stream << "TT"; + } + +public: + + void toEffect(Unit &unit) override { + unit.heal(50* strategy->getUnitTypeMultiply()); + if(unit.getUnitType() == UnitType::DRUID) { + Priestess priestess; + unit = priestess; + } + } + +}; + + +#endif //BATTLEFORHONOUR_TENT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Well.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Well.h new file mode 100644 index 000000000..4f1832306 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Neutrals/Well.h @@ -0,0 +1,27 @@ +#ifndef BATTLEFORHONOUR_WELL_H +#define BATTLEFORHONOUR_WELL_H + + +#include "NeutralObject.h" +#include "NeutralObjectStrategy.h" + +class Well: public NeutralObject { + +protected: + void print(std::ostream &stream) const override{ + stream << "WL"; + } + +public: + + void toEffect(Unit &unit) override { + unit.heal(10* strategy->getUnitTypeMultiply()); + if(unit.getUnitType() == UnitType::ARCHER) { + unit.getWeapon() = StarFall(); + } + } + +}; + + +#endif //BATTLEFORHONOUR_WELL_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/ObjectType.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/ObjectType.h new file mode 100644 index 000000000..3e7d576df --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/ObjectType.h @@ -0,0 +1,8 @@ +#ifndef BATTLEFORHONOUR_OBJECTTYPE_H +#define BATTLEFORHONOUR_OBJECTTYPE_H +enum class ObjectType{ + UNIT, + BASE, + NEUTRAL_OBJECT +}; +#endif //BATTLEFORHONOUR_OBJECTTYPE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.cpp b/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.cpp new file mode 100644 index 000000000..50cbc6734 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.cpp @@ -0,0 +1,97 @@ +#include "Unit.h" + +Unit::Unit(const Unit &other): + GameObject(ObjectType::UNIT), + armor(other.armor), + weapon(other.weapon), + health(other.health) {} + +void Unit::addObserver(UnitObserver *observer) { + + Log::log << "[#Unit] observer added" << Log::logend; + observers.push_back(observer); + +} + +void Unit::move(Point point) { + + for (auto elem: observers){ + elem->onUnitMove(this, point); + } + Log::log << "[#Unit] moves" << Log::logend; + +} + +void Unit::attack(Unit &other) { + + for (auto elem: observers){ + elem->onUnitAttack(this, &other); + } + Log::log << "[#Unit] attacks" << Log::logend; + +} + +void Unit::damage(int damage) { + + for (auto elem: observers) { + elem->onUnitDamaged(this); + } + + if (damage < 0) + damage = 0; + health -= damage; + + if (health <= 0){ + for (auto elem: observers) { + elem->onUnitDestroy(this); + } + } + Log::log << "[#Unit] damaged by " << damage << " points" << Log::logend; +} + +void Unit::heal(int hp) { + for (auto elem: observers) { + elem->onUnitHeal(this); + } + health += hp; + Log::log << "[#Unit] healed by " << hp << " points \n" << Log::logend; +} + +Unit &Unit::operator=(const Unit &unit) { + + armor = unit.armor; + weapon = unit.weapon; + health = unit.health; + return *this; +} + +Unit &Unit::operator<<(NeutralObject *neutralObject) { + neutralObject->toEffect(*this); + return *this; +} + +Unit::Unit(UnitType unitType, Armor &armor, Weapon &weapon, int health): + GameObject(ObjectType::UNIT), + unitType(unitType), + armor(armor), + weapon(weapon), + health(health) +{} + +int Unit::getHealth() const { + return health; +} + +void Unit::print(std::ostream &stream) const { + switch(unitType){ + case UnitType::DRUID: + stream << "D"; + break; + case UnitType::ARCHER: + stream << "A"; + break; + case UnitType::INFANTRY: + stream << "I"; + break; + } +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.h new file mode 100644 index 000000000..1e4fc7cb8 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Unit.h @@ -0,0 +1,68 @@ +#ifndef BATTLEFORHONOUR_UNIT_H +#define BATTLEFORHONOUR_UNIT_H + + +#include +#include +#include "../Armor/Armor.h" +#include "../Weapon/Weapon.h" +#include "../Observers/Observers.h" +#include "../GameField/Point.h" +#include "GameObject.h" +#include "../Terrains/TerrainProxy.h" +#include "Neutrals/NeutralObject.h" +#include "../Logs/Log.h" +#include "UnitType.h" + + + +class Unit: public GameObject { + +protected: + + UnitType unitType; + int health; + Armor &armor; + Weapon &weapon; + std::vector observers; + + void print(std::ostream &stream) const override; + +public: + + Unit(const Unit &other); + Unit(UnitType unitType, Armor &armor, Weapon &weapon, int health); + + Weapon &getWeapon(){ + return weapon; + } + Armor &getArmor(){ + return armor; + } + + void move(Point position); + void attack(Unit &other); + void heal(int hp); + void damage(int damage); + + void addObserver(UnitObserver *observer); + Unit& operator=(const Unit &unit); + Unit& operator<<(NeutralObject *neutralObject); + + friend LogProxy& operator<<(LogProxy &logger, Unit &unit){ + + logger << "Unit = x: " << unit.pos.x << " y: " << unit.pos.y << " health: " << unit.health; + return logger; + + } + + UnitType getUnitType(){ + return unitType; + } + + int getHealth() const; + +}; + + +#endif //BATTLEFORHONOUR_UNIT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/UnitType.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/UnitType.h new file mode 100644 index 000000000..5f83c446b --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/UnitType.h @@ -0,0 +1,8 @@ +#ifndef BATTLEFORHONOUR_UNITTYPE_H +#define BATTLEFORHONOUR_UNITTYPE_H +enum class UnitType{ + INFANTRY, + DRUID, + ARCHER +}; +#endif //BATTLEFORHONOUR_UNITTYPE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/Archer.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/Archer.h new file mode 100644 index 000000000..cf13eecff --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/Archer.h @@ -0,0 +1,18 @@ +#ifndef BATTLEFORHONOUR_ARCHER_H +#define BATTLEFORHONOUR_ARCHER_H + + +#include "../../../Weapon/Weapon.h" +#include "../../Unit.h" +#include "../../../Weapon/WeaponFlyweight.h" +#include "../../../Armor/ArmorFlyweight.h" + +class Archer: public Unit{ + +public: + Archer(Armor &armor, int health): + Unit(UnitType::ARCHER, armor, *WeaponFlyweight::getFlyWeight(), health){} +}; + + +#endif //BATTLEFORHONOUR_ARCHER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/CrossBowMan.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/CrossBowMan.h new file mode 100644 index 000000000..ebf16d225 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/CrossBowMan.h @@ -0,0 +1,17 @@ +#ifndef BATTLEFORHONOUR_CROSSBOWMAN_H +#define BATTLEFORHONOUR_CROSSBOWMAN_H + + +#include "Archer.h" +#include "../../../Armor/Armor.h" + +class CrossBowMan: public Archer{ + +public: + CrossBowMan(): + Archer(*ArmorFlyweight::getFlyweight(), 100){} +}; + + + +#endif //BATTLEFORHONOUR_CROSSBOWMAN_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/LongBowMan.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/LongBowMan.h new file mode 100644 index 000000000..f9088a48f --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Archer/LongBowMan.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_LONGBOWMAN_H +#define BATTLEFORHONOUR_LONGBOWMAN_H + + +#include "Archer.h" +#include "../../../Armor/Armor.h" + +class LongBowMan: public Archer{ + +public: + LongBowMan(): + Archer(*ArmorFlyweight::getFlyweight(), 50){} +}; + + +#endif //BATTLEFORHONOUR_LONGBOWMAN_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Druid.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Druid.h new file mode 100644 index 000000000..195590630 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Druid.h @@ -0,0 +1,19 @@ +#ifndef BATTLEFORHONOUR_DRUID_H +#define BATTLEFORHONOUR_DRUID_H + + +#include "../../Unit.h" +#include "../../../Armor/Armor.h" +#include "../../../Weapon/Weapon.h" +#include "../../../Weapon/WeaponFlyweight.h" +#include "../../../Armor/ArmorFlyweight.h" + +class Druid: public Unit{ + +public: + Druid(Weapon &weapon, int health): + Unit(UnitType::DRUID, *ArmorFlyweight::getFlyweight(), weapon, health){} +}; + + +#endif //BATTLEFORHONOUR_DRUID_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Hermit.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Hermit.h new file mode 100644 index 000000000..99643aabc --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Hermit.h @@ -0,0 +1,15 @@ +#ifndef BATTLEFORHONOUR_HERMIT_H +#define BATTLEFORHONOUR_HERMIT_H + + +#include "Druid.h" +#include "../../../Weapon/Weapon.h" + +class Hermit: public Druid{ + +public: + Hermit(): + Druid(*WeaponFlyweight::getFlyWeight(), 100){} +}; + +#endif //BATTLEFORHONOUR_HERMIT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Priestess.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Priestess.h new file mode 100644 index 000000000..2939de5b7 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Druid/Priestess.h @@ -0,0 +1,15 @@ +#ifndef BATTLEFORHONOUR_PRIESTESS_H +#define BATTLEFORHONOUR_PRIESTESS_H + + +#include "Druid.h" +#include "../../../Weapon/Weapon.h" + +class Priestess: public Druid{ + +public: + Priestess(): + Druid(*WeaponFlyweight::getFlyWeight(), 20){} +}; + +#endif //BATTLEFORHONOUR_PRIESTESS_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/Infantry.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/Infantry.h new file mode 100644 index 000000000..bf8169e15 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/Infantry.h @@ -0,0 +1,18 @@ +#ifndef BATTLEFORHONOUR_INFANTRY_H +#define BATTLEFORHONOUR_INFANTRY_H + + +#include "../../Unit.h" +#include "../../../Armor/Armor.h" +#include "../../../Weapon/WeaponFlyweight.h" +#include "../../../Armor/ArmorFlyweight.h" + +class Infantry: public Unit { + +public: + Infantry(Weapon &weapon, int health): + Unit(UnitType::INFANTRY, *ArmorFlyweight::getFlyweight(), weapon, health) {} +}; + + +#endif //BATTLEFORHONOUR_INFANTRY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SpearMan.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SpearMan.h new file mode 100644 index 000000000..b759726dd --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SpearMan.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_SPEARMAN_H +#define BATTLEFORHONOUR_SPEARMAN_H + + +#include "Infantry.h" +#include "../../../Weapon/Weapon.h" + +class SpearMan: public Infantry{ + +public: + SpearMan(): + Infantry(*WeaponFlyweight::getFlyWeight(), 50){} +}; + + +#endif //BATTLEFORHONOUR_SPEARMAN_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SwordMan.h b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SwordMan.h new file mode 100644 index 000000000..15a8761d7 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Objects/Units/Infantry/SwordMan.h @@ -0,0 +1,16 @@ +#ifndef BATTLEFORHONOUR_SWORDMAN_H +#define BATTLEFORHONOUR_SWORDMAN_H + + +#include "Infantry.h" +#include "../../../Weapon/Weapon.h" + +class SwordMan: public Infantry{ + +public: + SwordMan(): + Infantry(*WeaponFlyweight::getFlyWeight(), 100){} +}; + + +#endif //BATTLEFORHONOUR_SWORDMAN_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Observers/Observers.h b/8304/Masalykin_Daniil/BattleForHonour/Observers/Observers.h new file mode 100644 index 000000000..caad77b9e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Observers/Observers.h @@ -0,0 +1,28 @@ +#ifndef BATTLEFORHONOUR_OBSERVERS_H +#define BATTLEFORHONOUR_OBSERVERS_H + +#include "../Objects/Unit.h" +#include "../GameField/Point.h" + +class Unit; + +class UnitObserver { + +public: + + virtual void onUnitAttack(Unit *unit, Unit *other) = 0; + virtual void onUnitMove(Unit *unit, Point p) = 0; + virtual void onUnitDestroy(Unit *unit) = 0; + virtual void onUnitHeal(Unit *unit) = 0; + virtual void onUnitDamaged(Unit *unit) = 0; + +}; + +class BaseObserver { + +public: + virtual void onBaseNewUnit(Unit *unit, Point position) = 0; +}; + + +#endif //BATTLEFORHONOUR_OBSERVERS_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Point.cpp b/8304/Masalykin_Daniil/BattleForHonour/Point.cpp new file mode 100644 index 000000000..e4a21c83e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Point.cpp @@ -0,0 +1,26 @@ +#include "Point.h" + +Point::Point(int x, int y) { + this->x = x; + this->y = y; +} + +Point::Point() : + x(0), + y(0){} + +bool Point::operator!=(Point &other) const { + return !(x == other.x && y == other.y); +} + +bool Point::operator!=(Point other) const { + return !(x == other.x && y == other.y); +} + +bool Point::operator==(Point &other) const { + return x == other.x && y == other.y; +} + +bool Point::operator==(Point other) const { + return x == other.x && y == other.y; +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Point.h b/8304/Masalykin_Daniil/BattleForHonour/Point.h new file mode 100644 index 000000000..c792ae1c3 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Point.h @@ -0,0 +1,21 @@ +#ifndef BATTLEFORHONOUR_POINT_H +#define BATTLEFORHONOUR_POINT_H + + +class Point { + +public: + int x, y; + + Point(); + Point(int x, int y); + + bool operator!=(Point &other) const; + bool operator!=(Point other) const; + bool operator==(Point &other) const; + bool operator==(Point other) const; + + +}; + +#endif //BATTLEFORHONOUR_POINT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Terrains/Terrain.h b/8304/Masalykin_Daniil/BattleForHonour/Terrains/Terrain.h new file mode 100644 index 000000000..6dd44b7a7 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Terrains/Terrain.h @@ -0,0 +1,166 @@ +#ifndef BATTLEFORHONOUR_TERRAIN_H +#define BATTLEFORHONOUR_TERRAIN_H + + +#include "../Weapon/Weapon.h" +#include "../Armor/Armor.h" +#include "../Objects/GameObject.h" + +class Terrain { + +public: + + virtual void print(std::ostream &stream, GameObject &object) const = 0; + virtual void print(std::ostream &stream) const = 0; + + virtual int getDamageMultiply(WeaponType type) = 0; + virtual int getAbsorbMultiply(ArmorType type) = 0; + + friend std::ostream& operator<<(std::ostream &stream, const Terrain &terrain){ + terrain.print(stream); + return stream; + } + +}; + +class Wasteland: public Terrain { + +public: + + void print(std::ostream &stream, GameObject &object) const override{ + + stream << "[" << object << "]"; + + } + + void print(std::ostream &stream) const override{ + + stream << "[" << "#" << "]"; + + } + + int getDamageMultiply(WeaponType type) override { + switch (type){ + + case WeaponType::PHYSIC: + return 0; + case WeaponType::DISTANCE: + return 1; + case WeaponType::MAGIC: + return 100; + } + } + + int getAbsorbMultiply(ArmorType type) override { + switch (type){ + case ArmorType::MAGIC: + return 100; + case ArmorType::HEAVY: + return 0; + case ArmorType::LIGHT: + return 0; + case ArmorType::MEDIUM: + return 1; + } + } + +}; + +class Swamp: public Terrain { + +public: + + void print(std::ostream &stream, GameObject &object) const override{ + + stream << "<" << object << ">"; + + } + + void print(std::ostream &stream) const override{ + + stream << "<" << "#" << ">"; + + } + + int getDamageMultiply(WeaponType type) override { + switch (type){ + + case WeaponType::PHYSIC : + return 1; + case WeaponType::MAGIC: + return 2; + case WeaponType::DISTANCE: + return 3; + } + } + + int getAbsorbMultiply(ArmorType type) override { + switch (type){ + + case ArmorType::MAGIC: + return 10; + case ArmorType::HEAVY: + return 1; + case ArmorType::LIGHT: + return 5; + case ArmorType::MEDIUM: + return 2; + } + } + +}; + +class Desert: public Terrain { + +public: + + void print(std::ostream &stream, GameObject &object) const override{ + + stream << "{" << object << "}"; + + } + + void print(std::ostream &stream) const override{ + + stream << "{" << "#" << "}"; + + } + + int getDamageMultiply(WeaponType type) override { + + switch (type){ + case WeaponType::PHYSIC : + return 1; + case WeaponType::MAGIC: + return 0; + case WeaponType::DISTANCE: + return 3; + } + + } + + int getAbsorbMultiply(ArmorType type) override { + switch (type){ + + case ArmorType::MAGIC: + return 1; + case ArmorType::HEAVY: + return 2; + case ArmorType::LIGHT: + return 3; + case ArmorType::MEDIUM: + return 4; + } + } + +}; + +class Border: public Terrain { + +public: + void print(std::ostream &stream) const override { + stream << "+"; + } +}; + +#endif //BATTLEFORHONOUR_TERRAIN_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.cpp b/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.cpp new file mode 100644 index 000000000..f711f554b --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.cpp @@ -0,0 +1,21 @@ +#include "TerrainProxy.h" + +TerrainProxy::TerrainProxy(Terrain *terrain): + terrain(terrain) {} + +int TerrainProxy::getAbsorbMultiply(ArmorType type) { + if (terrain != nullptr) { + return terrain->getAbsorbMultiply(type); + } else{ + return 1; + } +} + +int TerrainProxy::getDamageMultiply(WeaponType type) { + if (terrain != nullptr) { + return terrain->getDamageMultiply(type); + } else{ + return 1; + } +} + diff --git a/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.h b/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.h new file mode 100644 index 000000000..c77e02ee1 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Terrains/TerrainProxy.h @@ -0,0 +1,19 @@ +#ifndef BATTLEFORHONOUR_TERRAINPROXY_H +#define BATTLEFORHONOUR_TERRAINPROXY_H + + +#include "Terrain.h" +#include "../GameField/Point.h" + +class TerrainProxy { + +private: + Terrain *terrain; +public: + explicit TerrainProxy(Terrain *terrain); + int getDamageMultiply(WeaponType type); + int getAbsorbMultiply(ArmorType type); +}; + + +#endif //BATTLEFORHONOUR_TERRAINPROXY_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/CommandInterpreter.h b/8304/Masalykin_Daniil/BattleForHonour/User/CommandInterpreter.h new file mode 100644 index 000000000..808ed66fd --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/CommandInterpreter.h @@ -0,0 +1,79 @@ +#ifndef BATTLEFORHONOUR_COMMANDINTERPRETER_H +#define BATTLEFORHONOUR_COMMANDINTERPRETER_H + + +#include "Commands/Command.h" +#include "Commands/AttackCommand.h" +#include "Commands/CreateCommand.h" +#include "Commands/MoveCommand.h" +#include "Commands/ShowCommand.h" +#include "Commands/ExitCommand.h" +#include "Commands/SaveCommand.h" +#include "Commands/LoadCommand.h" +#include "Commands/NewCommand.h" +#include "Commands/SkipCommand.h" + +class CommandInterpreter { + +private: + + AttackCommandHandler *attackHandler; + CreateCommandHandler *createHandler; + MoveCommandHandler *moveHandler; + ShowCommandHandler *showHandler; + ExitCommandHandler *exitHandler; + SaveCommandHandler *saveHandler; + LoadCommandHandler *loadHandler; + NewCommandHandler *newHandler; + SkipCommandHandler *skipHandler; + +public: + + CommandInterpreter(){ + newHandler = new NewCommandHandler(); + attackHandler = new AttackCommandHandler(); + createHandler = new CreateCommandHandler(); + moveHandler = new MoveCommandHandler(); + showHandler = new ShowCommandHandler(); + exitHandler = new ExitCommandHandler(); + saveHandler = new SaveCommandHandler(); + loadHandler = new LoadCommandHandler(); + skipHandler = new SkipCommandHandler(); + + attackHandler->setNext(createHandler); + createHandler->setNext(moveHandler); + moveHandler->setNext(showHandler); + showHandler->setNext(exitHandler); + exitHandler->setNext(saveHandler); + saveHandler->setNext(loadHandler); + loadHandler->setNext(newHandler); + newHandler->setNext(skipHandler); + } + + std::unique_ptr handle(const std::string& commandString){ + + std::vector commandSplitted; + std::stringstream stream(commandString); + std::string commandWord; + while (stream >> commandWord) + commandSplitted.push_back(commandWord); + + return attackHandler->handle(commandSplitted); + + } + + ~CommandInterpreter(){ + + delete attackHandler; + delete createHandler; + delete moveHandler; + delete showHandler; + delete exitHandler; + delete saveHandler; + delete skipHandler; + + } + +}; + +#endif //BATTLEFORHONOUR_COMMANDINTERPRETER_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackCommand.h new file mode 100644 index 000000000..f653c5f58 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackCommand.h @@ -0,0 +1,32 @@ +#ifndef BATTLEFORHONOUR_ATTACKCOMMAND_H +#define BATTLEFORHONOUR_ATTACKCOMMAND_H + + +#include "Command.h" +#include "AttackUnitCommand.h" + +class AttackCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() > 1 && terminal[0] == "attack"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)) { + terminal.erase(terminal.begin()); + auto handleAttack = new AttackUnitCommandHandler(); + return handleAttack->handle(terminal); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } +}; + + +#endif //BATTLEFORHONOUR_ATTACKCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackUnitCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackUnitCommand.h new file mode 100644 index 000000000..6b879d9d4 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/AttackUnitCommand.h @@ -0,0 +1,67 @@ +#ifndef BATTLEFORHONOUR_ATTACKUNITCOMMAND_H +#define BATTLEFORHONOUR_ATTACKUNITCOMMAND_H + + +#include "Command.h" + +class AttackUnitCommand: public Command{ + +private: + + Point from; + Point to; + +public: + + AttackUnitCommand(Point from, Point to): from(from), to(to){} + void execute(GameState &gameState) override{ + + auto objFrom = gameState.getField().getCell(from)->getObject(); + auto objTo = gameState.getField().getCell(to)->getObject(); + if (objFrom && objFrom->getType() == ObjectType::UNIT && objFrom && objFrom->getType() == ObjectType::UNIT) { + auto unitFrom = dynamic_cast(objFrom); + auto unitTo = dynamic_cast(objTo); + unitFrom->attack(*unitTo); + Log::log << "Gotten command attack" << Log::logend; + } else + Log::log << "No wat to attack" << Log::logend; + + } + + [[nodiscard]] CommandSnapshot * getSnapshot() const override{ + std::stringstream stream; + stream << "attack unit " << from.x << " " << from.y << " " << to.x << " " << to.y << std::endl; + return new CommandSnapshot(stream.str()); + } + +}; + +class AttackUnitCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 5 && terminal[0] == "unit"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + int x1 = convertStr(terminal[1]); + int y1 = convertStr(terminal[2]); + int x2 = convertStr(terminal[3]); + int y2 = convertStr(terminal[4]); + Point from(x1,y1); + Point to(x2,y2); + return std::unique_ptr(new AttackUnitCommand(from, to)); + } + + if (next) + return next->handle(terminal); + return std::make_unique(); + + } + +}; + +#endif //BATTLEFORHONOUR_ATTACKUNITCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/Command.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/Command.h new file mode 100644 index 000000000..3292502cd --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/Command.h @@ -0,0 +1,59 @@ +#ifndef BATTLEFORHONOUR_COMMAND_H +#define BATTLEFORHONOUR_COMMAND_H + + +#include +#include +#include +#include "../../Logs/Log.h" +#include "../../Game/GameState.h" +#include "CommandSnapshot.h" + +class Command { + +public: + + virtual void execute(GameState &gameInfo){} + [[nodiscard]] virtual CommandSnapshot *getSnapshot() const { + return new CommandSnapshot(">>wrong command\n"); + } + virtual ~Command(){} + +}; + + +class CommandHandler{ + +protected: + CommandHandler *next{}; + +public: + + virtual std::unique_ptr handle(std::vector &terminal)=0; + virtual bool isHandle(std::vector &terminal)=0; + void setNext(CommandHandler *commandHandler){ + next = commandHandler; + } + virtual ~CommandHandler()= default; + +}; + +int convertStr(const std::string& s) { + + try { + return (int)std::stoull(s); + } catch (std::invalid_argument) { + Log::log << "Wrong format. No numbers." << Log::logend; + return 0; + } catch (std::out_of_range) { + Log::log << "Wrong format. Range overflow." << Log::logend; + return 0; + } catch (...) { + Log::log << "Wrong format. Anything goes wrong..." << Log::logend; + return 0; + } + +} + + +#endif //BATTLEFORHONOUR_COMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CommandSnapshot.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CommandSnapshot.h new file mode 100644 index 000000000..edc5f8b70 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CommandSnapshot.h @@ -0,0 +1,32 @@ +#ifndef BATTLEFORHONOUR_COMMANDSNAPSHOT_H +#define BATTLEFORHONOUR_COMMANDSNAPSHOT_H + + +#include +#include +#include + +class CommandSnapshot{ + +private: + + std::string commandLine; + +public: + + explicit CommandSnapshot(std::string commandLine): commandLine(std::move(commandLine)){} + + void saveToFile(std::ofstream &fs) const{ + + fs << commandLine; + + } + + unsigned long int getHash(std::hash &toHash){ + return toHash(commandLine); + } + +}; + + +#endif //BATTLEFORHONOUR_COMMANDSNAPSHOT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateBaseCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateBaseCommand.h new file mode 100644 index 000000000..4e5d312db --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateBaseCommand.h @@ -0,0 +1,66 @@ +#ifndef BATTLEFORHONOUR_CREATEBASECOMMAND_H +#define BATTLEFORHONOUR_CREATEBASECOMMAND_H + + +#include "Command.h" +#include "../../Armor/ArmorFlyweight.h" +#include "../../Armor/Armor.h" + +class CreateBaseCommand: public Command { + +private: + + Point basePos; + +public: + + explicit CreateBaseCommand(Point pos): basePos(pos){} + void execute(GameState &gameState) override{ + + auto *base = new Base(100, *ArmorFlyweight::getFlyweight()); + if (gameState.setNowPlayerBase(base)) { + gameState.getField().addBase(base, basePos); + Log::log << "Command to create base" << Log::logend; + } else + Log::log << "This player already has base" << Log::logend; + } + + [[nodiscard]] CommandSnapshot * getSnapshot() const override{ + + std::stringstream stream; + stream << "create base " << basePos.x << " " << basePos.y << std::endl; + return new CommandSnapshot(stream.str()); + + } + +}; + +class CreateBaseCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() == 3 && terminal[0] == "base"; + + } + + std::unique_ptr handle(std::vector &terminal) override { + + if (isHandle(terminal)){ + int x = convertStr(terminal[1]); + int y = convertStr(terminal[2]); + Point basePosition(x, y); + return std::unique_ptr(new CreateBaseCommand(basePosition)); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } +}; + + + +#endif //BATTLEFORHONOUR_CREATEBASECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateCommand.h new file mode 100644 index 000000000..463da4d87 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateCommand.h @@ -0,0 +1,36 @@ +#ifndef BATTLEFORHONOUR_CREATECOMMAND_H +#define BATTLEFORHONOUR_CREATECOMMAND_H + + +#include "Command.h" +#include "CreateUnitCommand.h" +#include "CreateBaseCommand.h" + +class CreateCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() > 1 && terminal[0] == "create"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + terminal.erase(terminal.begin()); + + auto handleUnit = new CreateUnitCommandHandler(); + auto handleBase = new CreateBaseCommandHandler(); + handleUnit->setNext(handleBase); + + return handleUnit->handle(terminal); + } + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + +#endif //BATTLEFORHONOUR_CREATECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateUnitCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateUnitCommand.h new file mode 100644 index 000000000..9086a52a8 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/CreateUnitCommand.h @@ -0,0 +1,84 @@ +#ifndef BATTLEFORHONOUR_CREATEUNITCOMMAND_H +#define BATTLEFORHONOUR_CREATEUNITCOMMAND_H + + +#include "Command.h" +#include "../../Objects/Units/Infantry/SwordMan.h" +#include "../../Objects/Units/Archer/CrossBowMan.h" +#include "../../Objects/Units/Druid/Hermit.h" +#include "../../Objects/Units/Archer/LongBowMan.h" + +class CreateUnitCommand: public Command { + +private: + + Point unitPos; + UnitType unitType; + +public: + + explicit CreateUnitCommand(Point position, UnitType unitType): unitPos(position), unitType(unitType){} + void execute(GameState &gameState) override{ + + if (!gameState.getNowPlayerBase()){ + Log::log << "Can't create a unit without a base" << Log::logend; + return; + } + + switch (unitType) { + + case UnitType::ARCHER: + gameState.getNowPlayerBase()->createUnit(unitPos); + break; + case UnitType::INFANTRY: + gameState.getNowPlayerBase()->createUnit(unitPos); + break; + case UnitType::DRUID: + gameState.getNowPlayerBase()->createUnit(unitPos); + break; + + } + Log::log << "Command to create a unit " << Log::logend; + + } + + [[nodiscard]] CommandSnapshot * getSnapshot() const override{ + + std::stringstream stream; + stream << "create unit " << unitPos.x << " " << unitPos.y << " " << static_cast(unitType) << std::endl; + return new CommandSnapshot(stream.str()); + + } + +}; + +class CreateUnitCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() == 4 && terminal[0] == "unit"; + + } + + std::unique_ptr handle(std::vector &terminal) override { + + if (isHandle(terminal)){ + int x = convertStr(terminal[1]); + int y = convertStr(terminal[2]); + auto type = static_cast(std::stoi(terminal[3])); + Point basePos(x, y); + return std::unique_ptr(new CreateUnitCommand(basePos, type)); + } + + if (next) + return next->handle(terminal); + return std::make_unique(); + + } + +}; + + +#endif //BATTLEFORHONOUR_CREATEUNITCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ExitCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ExitCommand.h new file mode 100644 index 000000000..177aaff0e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ExitCommand.h @@ -0,0 +1,39 @@ +#ifndef BATTLEFORHONOUR_EXITCOMMAND_H +#define BATTLEFORHONOUR_EXITCOMMAND_H + +#include "Command.h" + +class ExitCommand: public Command{ + + void execute(GameState &gameState) override{ + exit(0); + } + +}; + +class ExitCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 1 && terminal[0] == "exit"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + terminal.erase(terminal.begin()); + return std::unique_ptr(new ExitCommand()); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + + } + +}; + + +#endif //BATTLEFORHONOUR_EXITCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/LoadCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/LoadCommand.h new file mode 100644 index 000000000..8f64995f3 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/LoadCommand.h @@ -0,0 +1,96 @@ +#ifndef BATTLEFORHONOUR_LOADCOMMAND_H +#define BATTLEFORHONOUR_LOADCOMMAND_H + + +#include "../LoadCI.h" + +class LoadCommand: public Command { + +private: + + std::ifstream fs; + LoadCI inter; + +public: + + explicit LoadCommand(std::string &filename): fs(filename){} + void execute(GameState &gameState) override{ + + gameState.newGame(); + std::string terminal; + std::hash toHash; + unsigned long int calculatedHash = 0; + unsigned long int fileHash = 0; + + std::string fileHashStr; + std::getline(fs, fileHashStr); + + fileHash = convertStr(fileHashStr); + + while (std::getline(fs, terminal)){ + + std::unique_ptr command = inter.handle(terminal); + try { + command->execute(gameState); + } catch(DoubleBasePlacingExc &exception) { + Log::log << "[#FileLoader]" << "User " << exception.playerIndex << " trying to place second base." << Log::logend; + } catch (DoublePlacingExc &exception){ + Log::log << "[#FileLoader]" << "This cell is busy by other object." << Log::logend; + } catch (OutOfRangeExc &exception){ + Log::log << "[#FileLoader]" << "Out of range. Cell " << exception.x << " " << exception.y << " is not exist." << Log::logend; + } catch (ImpossibleMoveExc &exception){ + Log::log << "[#FileLoader]" << "Can't move to this cell. They busy by other object." << Log::logend; + } catch (...){ + Log::log << "[#FileLoader]" << "Unknown error." << Log::logend; + } + auto snapshot = command->getSnapshot(); + gameState.addAction(snapshot); + calculatedHash += snapshot->getHash(toHash); + gameState.nextUser(); + + } + + Log::log << "String hash: " << fileHashStr << Log::logend; + Log::log << "Integer hash: " << fileHash << Log::logend; + Log::log << "Calculated hash: " << calculatedHash << Log::logend; + Log::log << "Commands were read: " << gameState.getActions().size() << Log::logend; + + if (fileHash != calculatedHash){ + Log::log << "Wrong file format. File may be incorrect." << Log::logend; + throw InvalidFileLoadExc(); + } + + } + + ~LoadCommand() override{ + fs.close(); + } + +}; + +class LoadCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 2 && terminal[0] == "load"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + return std::unique_ptr(new LoadCommand(terminal[1])); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + + } + +}; + + + +#endif //BATTLEFORHONOUR_LOADCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveCommand.h new file mode 100644 index 000000000..8bd9a59ac --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveCommand.h @@ -0,0 +1,34 @@ +#ifndef BATTLEFORHONOUR_MOVECOMMAND_H +#define BATTLEFORHONOUR_MOVECOMMAND_H + + +#include "Command.h" +#include "MoveUnitCommand.h" + +class MoveCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() > 1 && terminal[0] == "move"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + + terminal.erase(terminal.begin()); + auto handleTemp = new MoveUnitCommandHandler(); + return handleTemp->handle(terminal); + + } + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + +#endif //BATTLEFORHONOUR_MOVECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveUnitCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveUnitCommand.h new file mode 100644 index 000000000..f5157808b --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/MoveUnitCommand.h @@ -0,0 +1,72 @@ +#ifndef BATTLEFORHONOUR_MOVEUNITCOMMAND_H +#define BATTLEFORHONOUR_MOVEUNITCOMMAND_H + + +#include "Command.h" + +class MoveUnitCommand: public Command { + +private: + + Point from; + Point to; + +public: + + MoveUnitCommand(Point from, Point to): + from(from), + to(to){} + void execute(GameState &gameInfo) override{ + + auto object = gameInfo.getField().getCell(from)->getObject(); + if (object && object->getType() == ObjectType::UNIT){ + auto unit1 = dynamic_cast(object); + unit1->move(to); + Log::log << "Command to unit moved" << Log::logend; + } else + Log::log << "No unit on this cell" << Log::logend; + } + + [[nodiscard]] CommandSnapshot * getSnapshot() const override{ + + std::stringstream stream; + stream << "move unit " << from.x << " " << from.y << " " << to.x << " " << to.y << std::endl; + return new CommandSnapshot(stream.str()); + + } + +}; + +class MoveUnitCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() == 5 && terminal[0] == "unit"; + + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + + int x1 = convertStr(terminal[1]); + int y1 = convertStr(terminal[2]); + int x2 = convertStr(terminal[3]); + int y2 = convertStr(terminal[4]); + Point from(x1, y1); + Point to(x2, y2); + return std::unique_ptr(new MoveUnitCommand(from, to)); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + + } + +}; + +#endif //BATTLEFORHONOUR_MOVEUNITCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewCommand.h new file mode 100644 index 000000000..b32236a49 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewCommand.h @@ -0,0 +1,39 @@ +#ifndef BATTLEFORHONOUR_NEWCOMMAND_H +#define BATTLEFORHONOUR_NEWCOMMAND_H + + +#include "Command.h" +#include "NewGameCommand.h" + +#include + +class NewCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() > 1 && terminal[0] == "new"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + + terminal.erase(terminal.begin()); + auto handlerTemp = new NewGameCommandHandler; + + return handlerTemp->handle(terminal); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + + } + +}; + + + +#endif //BATTLEFORHONOUR_NEWCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewGameCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewGameCommand.h new file mode 100644 index 000000000..014c0d3f1 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/NewGameCommand.h @@ -0,0 +1,41 @@ +#ifndef BATTLEFORHONOUR_NEWGAMECOMMAND_H +#define BATTLEFORHONOUR_NEWGAMECOMMAND_H + + +#include "Command.h" + +class NewGameCommand: public Command { + +public: + + explicit NewGameCommand(){} + void execute(GameState &gameState) override{ + gameState.newGame(); + } + +}; + +class NewGameCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 1 && terminal[0] == "game"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + return std::unique_ptr(new NewGameCommand()); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + +#endif //BATTLEFORHONOUR_NEWGAMECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SaveCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SaveCommand.h new file mode 100644 index 000000000..76678916d --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SaveCommand.h @@ -0,0 +1,74 @@ +#ifndef BATTLEFORHONOUR_SAVECOMMAND_H +#define BATTLEFORHONOUR_SAVECOMMAND_H + + +#include "Command.h" + +class SaveCommand: public Command { + +private: + + std::ofstream fs; + +public: + + explicit SaveCommand(std::string &filename){ + fs = std::ofstream(filename); + Log::log << "File opened" << Log::logend; + Log::log << "File is opened: " << fs.is_open() << Log::logend; + + } + void execute(GameState &gameState) override{ + + std::hash toHash; + unsigned long int fileHash = 0; + + Log::log << "Saving..." << Log::logend; + + auto actions = gameState.getActions(); + + for (auto elem: actions){ + fileHash += elem->getHash(toHash); + } + + fs << fileHash << std::endl; + + for (auto elem: actions){ + elem->saveToFile(fs); + } + + Log::log << "Saved commands count: " << gameState.getActions().size() << Log::logend; + + } + + ~SaveCommand() override{ + Log::log << "File closed" << Log::logend; + fs.close(); + Log::log << "File is opened: " << fs.is_open() << Log::logend; + } + +}; + +class SaveCommandHandler: public CommandHandler{ + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 2 && terminal[0] == "save"; + + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + return std::unique_ptr(new SaveCommand(terminal[1])); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + +#endif //BATTLEFORHONOUR_SAVECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowBaseCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowBaseCommand.h new file mode 100644 index 000000000..cb9f82a9c --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowBaseCommand.h @@ -0,0 +1,65 @@ +#ifndef BATTLEFORHONOUR_SHOWBASECOMMAND_H +#define BATTLEFORHONOUR_SHOWBASECOMMAND_H + + +#include "Command.h" +#include "../../GameField/Point.h" + +class ShowBaseCommand: public Command { + +private: + + Point basePosition; + +public: + + explicit ShowBaseCommand(Point p): basePosition(p){} + void execute(GameState &gameInfo) override{ + + auto object = gameInfo.getField().getCell(basePosition)->getObject(); + if (object && object->getType() == ObjectType::BASE){ + + auto base = dynamic_cast(object); + std::cout << "Base: " << std::endl + << "HP: " << base->getHealth() << std::endl + << "Armor: " << base->getArmor() << std::endl + << "Max Objects Count: " << base->getMaxObjectsCount() << std::endl; + Log::log << "Show base command" << Log::logend; + + } else{ + Log::log << "Empty cell" << Log::logend; + } + + } + +}; + +class ShowBaseCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() == 3 && terminal[0] == "base"; + + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + int x = convertStr(terminal[1]); + int y = convertStr(terminal[2]); + Point basePosition(x, y); + return std::unique_ptr(new ShowBaseCommand(basePosition)); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + +#endif //BATTLEFORHONOUR_SHOWBASECOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowCommand.h new file mode 100644 index 000000000..d4f77f078 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowCommand.h @@ -0,0 +1,44 @@ +#ifndef BATTLEFORHONOUR_SHOWCOMMAND_H +#define BATTLEFORHONOUR_SHOWCOMMAND_H + + +#include "Command.h" + +#include +#include "ShowBaseCommand.h" +#include "ShowUnitCommand.h" + +class ShowCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() > 1 && terminal[0] == "show"; + + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + + terminal.erase(terminal.begin()); + + auto handlerUnit = new ShowUnitCommandHandler; + auto handlerBase = new ShowBaseCommandHandler; + + handlerUnit->setNext(handlerBase); + + return handlerUnit->handle(terminal); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + +#endif //BATTLEFORHONOUR_SHOWCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowUnitCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowUnitCommand.h new file mode 100644 index 000000000..992a60b21 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/ShowUnitCommand.h @@ -0,0 +1,78 @@ +#ifndef BATTLEFORHONOUR_SHOWUNITCOMMAND_H +#define BATTLEFORHONOUR_SHOWUNITCOMMAND_H + + +#include "Command.h" + +class ShowUnitCommand: public Command { + +private: + + Point unitPosition; + +public: + + explicit ShowUnitCommand(Point p): unitPosition(p){} + void execute(GameState &gameInfo) override{ + + auto object = gameInfo.getField().getCell(unitPosition)->getObject(); + if (object && object->getType() == ObjectType::UNIT){ + + auto unit = dynamic_cast(object); + std::cout << "Unit: " << std::endl + << "HP: " << unit->getHealth() << std::endl + << "Armor: " << unit->getArmor() << std::endl + << "Weapon: " << unit->getWeapon() << std::endl + << "Unit class: "; + switch(unit->getUnitType()){ + case UnitType::ARCHER: + std::cout << "Archer" << std::endl; + break; + case UnitType::DRUID: + std::cout << "Druid" << std::endl; + break; + case UnitType::INFANTRY: + std::cout << "Infantry" << std::endl; + break; + } + + Log::log << "Command show unit" << Log::logend; + + } else{ + Log::log << "Empty cell" << Log::logend; + } + + } + +}; + +class ShowUnitCommandHandler: public CommandHandler{ + +public: + + bool isHandle(std::vector &terminal) override{ + + return terminal.size() == 3 && terminal[0] == "unit"; + + } + + virtual std::unique_ptr handle(std::vector &terminal){ + + if (isHandle(terminal)){ + int x = convertStr(terminal[1]); + int y = convertStr(terminal[2]); + Point unitPosition(x, y); + return std::unique_ptr(new ShowUnitCommand(unitPosition)); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + + + +#endif //BATTLEFORHONOUR_SHOWUNITCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SkipCommand.h b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SkipCommand.h new file mode 100644 index 000000000..a926c04a3 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/Commands/SkipCommand.h @@ -0,0 +1,37 @@ +#ifndef BATTLEFORHONOUR_SKIPCOMMAND_H +#define BATTLEFORHONOUR_SKIPCOMMAND_H + +#include "Command.h" + +class SkipCommand: public Command{ + + void execute(GameState &gameState) override{ + Log::log << "[#User] " << gameState.getNowPlayerIndex() << " skiped turn" << Log::logend; + } + +}; + +class SkipCommandHandler: public CommandHandler { + +public: + + bool isHandle(std::vector &terminal) override{ + return terminal.size() == 1 && terminal[0] == "skip"; + } + + std::unique_ptr handle(std::vector &terminal) override{ + + if (isHandle(terminal)){ + terminal.erase(terminal.begin()); + return std::unique_ptr(new SkipCommand()); + } + + if (next) + return next->handle(terminal); + + return std::make_unique(); + } + +}; + +#endif //BATTLEFORHONOUR_SKIPCOMMAND_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/ConnectCI.h b/8304/Masalykin_Daniil/BattleForHonour/User/ConnectCI.h new file mode 100644 index 000000000..0b22e6402 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/ConnectCI.h @@ -0,0 +1,68 @@ +#ifndef BATTLEFORHONOUR_CONNECTCI_H +#define BATTLEFORHONOUR_CONNECTCI_H + + +#include "Commands/Command.h" + +#include "Commands/AttackCommand.h" +#include "Commands/CreateCommand.h" +#include "Commands/MoveCommand.h" +#include "Commands/ShowCommand.h" +#include "Commands/ExitCommand.h" +#include "Commands/NewCommand.h" + +class ConnectCI { + +private: + + AttackCommandHandler *attackHandler; + CreateCommandHandler *createHandler; + MoveCommandHandler *moveHandler; + ShowCommandHandler *showHandler; + ExitCommandHandler *exitHandler; + NewCommandHandler *newHandler; + +public: + + ConnectCI(){ + + newHandler = new NewCommandHandler(); + attackHandler = new AttackCommandHandler(); + createHandler = new CreateCommandHandler(); + moveHandler = new MoveCommandHandler(); + showHandler = new ShowCommandHandler(); + exitHandler = new ExitCommandHandler(); + + + attackHandler->setNext(createHandler); + createHandler->setNext(moveHandler); + moveHandler->setNext(showHandler); + showHandler->setNext(exitHandler); + exitHandler->setNext(newHandler); + } + + std::unique_ptr handle(std::string commandString){ + + std::vector splitCommands; + std::stringstream stream(commandString); + std::string commandWord; + while (stream >> commandWord) + splitCommands.push_back(commandWord); + + return attackHandler->handle(splitCommands); + + } + + ~ConnectCI(){ + delete attackHandler; + delete createHandler; + delete moveHandler; + delete showHandler; + delete exitHandler; + } + + +}; + + +#endif //BATTLEFORHONOUR_CONNECTCI_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/User/LoadCI.h b/8304/Masalykin_Daniil/BattleForHonour/User/LoadCI.h new file mode 100644 index 000000000..49cd77f1a --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/User/LoadCI.h @@ -0,0 +1,71 @@ +#ifndef BATTLEFORHONOUR_LOADCI_H +#define BATTLEFORHONOUR_LOADCI_H + + +#include "Commands/Command.h" +#include "Commands/AttackCommand.h" +#include "Commands/CreateCommand.h" +#include "Commands/MoveCommand.h" +#include "Commands/ShowCommand.h" +#include "Commands/ExitCommand.h" +#include "Commands/NewCommand.h" +#include "Commands/SkipCommand.h" + +class LoadCI { + +private: + + AttackCommandHandler *attackHandler; + CreateCommandHandler *createHandler; + MoveCommandHandler *moveHandler; + ShowCommandHandler *showHandler; + ExitCommandHandler *exitHandler; + NewCommandHandler *newHandler; + SkipCommandHandler *skipHandler; + + +public: + + LoadCI(){ + newHandler = new NewCommandHandler(); + attackHandler = new AttackCommandHandler(); + createHandler = new CreateCommandHandler(); + moveHandler = new MoveCommandHandler(); + showHandler = new ShowCommandHandler(); + exitHandler = new ExitCommandHandler(); + skipHandler = new SkipCommandHandler(); + + attackHandler->setNext(createHandler); + createHandler->setNext(moveHandler); + moveHandler->setNext(showHandler); + showHandler->setNext(exitHandler); + exitHandler->setNext(newHandler); + newHandler->setNext(skipHandler); + } + + std::unique_ptr handle(std::string commandString){ + + std::vector splitCommands; + std::stringstream stream(commandString); + std::string commandWord; + while (stream >> commandWord) + splitCommands.push_back(commandWord); + + return attackHandler->handle(splitCommands); + + } + + ~LoadCI(){ + delete attackHandler; + delete createHandler; + delete moveHandler; + delete showHandler; + delete exitHandler; + delete skipHandler; + } + + +}; + + +#endif //BATTLEFORHONOUR_LOADCI_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/AbolishMagic.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/AbolishMagic.h new file mode 100644 index 000000000..2fb8ccf97 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/AbolishMagic.h @@ -0,0 +1,21 @@ +#ifndef BATTLEFORHONOUR_ABOLISHMAGIC_H +#define BATTLEFORHONOUR_ABOLISHMAGIC_H + + +#include "Weapon.h" + +class AbolishMagic: public Weapon{ + +public: + + AbolishMagic(){ + + damage = 20; + type = WeaponType::MAGIC; + + } + +}; + + +#endif //BATTLEFORHONOUR_ABOLISHMAGIC_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/Bow.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Bow.h new file mode 100644 index 000000000..c5043264c --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Bow.h @@ -0,0 +1,19 @@ +#ifndef BATTLEFORHONOUR_BOW_H +#define BATTLEFORHONOUR_BOW_H + + +#include "Weapon.h" + +class Bow: public Weapon{ + +public: + + Bow(){ + damage = 10; + type = WeaponType::DISTANCE; + } + +}; + + +#endif //BATTLEFORHONOUR_BOW_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/Spear.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Spear.h new file mode 100644 index 000000000..d977677af --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Spear.h @@ -0,0 +1,21 @@ +#ifndef BATTLEFORHONOUR_SPEAR_H +#define BATTLEFORHONOUR_SPEAR_H + + +#include "Weapon.h" + +class Spear: public Weapon{ + +public: + + Spear(){ + + damage = 20; + type = WeaponType::PHYSIC; + + } + +}; + + +#endif //BATTLEFORHONOUR_SPEAR_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/StarFall.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/StarFall.h new file mode 100644 index 000000000..4a4db3d38 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/StarFall.h @@ -0,0 +1,21 @@ +#ifndef BATTLEFORHONOUR_STARFALL_H +#define BATTLEFORHONOUR_STARFALL_H + + +#include +#include "Weapon.h" + +class StarFall: public Weapon{ + +public: + + StarFall(){ + + damage = 50; + type = WeaponType::MAGIC; + + } + +}; + +#endif //BATTLEFORHONOUR_STARFALL_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/Sword.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Sword.h new file mode 100644 index 000000000..ad3f0cd6f --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Sword.h @@ -0,0 +1,20 @@ +#ifndef BATTLEFORHONOUR_SWORD_H +#define BATTLEFORHONOUR_SWORD_H + + +#include "Weapon.h" + +class Sword: public Weapon{ + +public: + Sword(){ + + damage = 10; + type = WeaponType::PHYSIC; + + } + +}; + + +#endif //BATTLEFORHONOUR_SWORD_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/Weapon.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Weapon.h new file mode 100644 index 000000000..4d673c07a --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/Weapon.h @@ -0,0 +1,84 @@ +#ifndef BATTLEFORHONOUR_WEAPON_H +#define BATTLEFORHONOUR_WEAPON_H + + +#include +#include "WeaponType.h" + + +class Weapon { + +protected: + + WeaponType type; + int damage; + +public: + + int getDamage() const { + return damage; + } + WeaponType getType() const { + return type; + } + + bool operator==(const Weapon &other){ + return type == other.type && damage == other.damage; + } + + Weapon& operator=(const Weapon& other){ + if (this == &other) return *this; + type = other.type; + damage = other.damage; + return *this; + } + + friend std::ostream &operator<<(std::ostream &stream, const Weapon &weapon){ + stream << "Weapon = " << "Damage: " << weapon.damage; + return stream; + } + +}; + +class Sword: public Weapon{ +public: + Sword(){ + damage = 10; + type = WeaponType::PHYSIC; + } +}; + +class StarFall: public Weapon{ +public: + StarFall(){ + damage = 50; + type = WeaponType::MAGIC; + } +}; + +class Spear: public Weapon{ +public: + Spear(){ + damage = 20; + type = WeaponType::PHYSIC; + } +}; + +class Bow: public Weapon{ +public: + Bow(){ + damage = 10; + type = WeaponType::DISTANCE; + } +}; + +class AbolishMagic: public Weapon{ + +public: + AbolishMagic(){ + damage = 20; + type = WeaponType::MAGIC; + } +}; + +#endif //BATTLEFORHONOUR_WEAPON_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.cpp b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.cpp new file mode 100644 index 000000000..7ef3b0f4b --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.cpp @@ -0,0 +1,3 @@ +#include "WeaponFlyWeight.h" + +WeaponFlyWeight *WeaponFlyWeight::self = nullptr; \ No newline at end of file diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.h new file mode 100644 index 000000000..84cb3c5c3 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponFlyWeight.h @@ -0,0 +1,40 @@ +#ifndef BATTLEFORHONOUR_WEAPONFLYWEIGHT_H +#define BATTLEFORHONOUR_WEAPONFLYWEIGHT_H + + +#include +#include "Weapon.h" + +class WeaponFlyweight { + +private: + + static WeaponFlyweight *self; + std::vector weapons; + +public: + + template + static Type* getFlyWeight(){ + + if (!self) + self = new WeaponFlyweight(); + + Type setWeapon; + for (auto *weapon: self->weapons){ + + if (setWeapon == *weapon){ + return static_cast(weapon); + } + } + + Type *tmp = new Type(); + self->weapons.push_back(tmp); + return tmp; + } +}; + +WeaponFlyweight *WeaponFlyweight::self = nullptr; + + +#endif //BATTLEFORHONOUR_WEAPONFLYWEIGHT_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponType.h b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponType.h new file mode 100644 index 000000000..301187822 --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/Weapon/WeaponType.h @@ -0,0 +1,10 @@ +#ifndef BATTLEFORHONOUR_WEAPONTYPE_H +#define BATTLEFORHONOUR_WEAPONTYPE_H + +enum class WeaponType{ + MAGIC, + PHYSIC, + DISTANCE +}; + +#endif //BATTLEFORHONOUR_WEAPONTYPE_H diff --git a/8304/Masalykin_Daniil/BattleForHonour/main.cpp b/8304/Masalykin_Daniil/BattleForHonour/main.cpp new file mode 100644 index 000000000..72e39ef9e --- /dev/null +++ b/8304/Masalykin_Daniil/BattleForHonour/main.cpp @@ -0,0 +1,23 @@ +#include +#include "Game/GameFacade.h" +#include "Logs/FileLogger.h" +#include "Logs/CmdLogger.h" +#include "GameSettings/BigGame.h" +#include "GameSettings/MidGame.h" +#include "GameSettings/SmallGame.h" +#include "GameSettings/HillKing.h" + +int main() { + + Log::log.setLogFormat(new CmdLogger()); + Log::log.setLogStrOutput(new LogString()); + + auto game = GameFacade::single(); + + while (!game.isOver()){ + std::cout << game; + game.nextTurn(); + } + + return 0; +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.cpp new file mode 100644 index 000000000..20b6faa6d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Cell.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.h new file mode 100644 index 000000000..9846c6919 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Cell.h @@ -0,0 +1,19 @@ +#ifndef BATTLE_FOR_HONOR_CELL_H +#define BATTLE_FOR_HONOR_CELL_H + +#include "../Units/Unit.h" + +class Cell { +public: + bool is_full; + Unit* unit; + Cell(){ + is_full = false; + unit = nullptr; + } + + +}; + + +#endif //BATTLE_FOR_HONOR_CELL_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.cpp new file mode 100644 index 000000000..c951d67d4 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.cpp @@ -0,0 +1,25 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Field.h" +bool Field::move_unit(Unit* unit, int x, int y){ + int iwidth = static_cast(lengthX); + int iheight = static_cast(lengthY); + for (int i = 0; i < iwidth; i++) + for (int j = 0; j < iheight; j++) + { + if (field[i][j].unit == unit) + { + if (x+i >= iwidth || y+j >= iheight || x+i < 0 || y+j < 0) + return false; + if (field[x+i][y+j].is_full == true) + return false; + field[x+i][y+j].unit = field[i][j].unit; + field[x+i][y+j].is_full = true; + field[i][j].is_full = false; + field[i][j].unit = nullptr; + return true; + } + } +} diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.h new file mode 100644 index 000000000..bd8d9779e --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/Field.h @@ -0,0 +1,87 @@ +#ifndef BATTLE_FOR_HONOR_FIELD_H +#define BATTLE_FOR_HONOR_FIELD_H + +#include +#include "Cell.h" + +#define X 15 +#define Y 10 +#define SIZE 20 + +class Field +{ + int object_count; + const int limit = SIZE; + +public: + Cell** field = nullptr; + const int lengthX; + const int lengthY; + Field() : lengthY(Y), lengthX(X) + { + object_count = 0; + field = new Cell * [lengthY]; + for (int i = 0; i < lengthY; i++) + { + field[i] = new Cell [lengthX]; + + } + } + + ~Field() + { + for (int i = 0; i < lengthY; i++) + { + delete[] field[i]; + } + delete[] field; + } + bool move_unit(Unit*, int, int); + + bool check_max_count() + { + return (object_count <= limit); + } + + void insert_Unit(Unit* obj) + { + if (object_count <= limit &&check_max_count() && obj->getX() < this->lengthX && obj->getY() < this->lengthY && field[obj->getY()][obj->getX()].is_full == false) + { + field[obj->getY()][obj->getX()].unit = obj; + field[obj->getY()][obj->getX()].is_full = true; + object_count++; + } + } + + void remove_Unit(Unit* obj) + { + if (obj != nullptr) + { + Cell new_cell; + field[obj->getY()][obj->getX()] = new_cell; + object_count--; + } + } + + void print_field() const + { + for (int i = 0; i < this->lengthY; i++) + { + for (int j = 0; j < this->lengthX; j++) + { + if (field[i][j].is_full == false) + { + std::cout << 0 << ' '; + } + else + { + std::cout << field[i][j].unit->getSymbol() << ' '; + } + } + std::cout << '\n'; + } + std::cout << '\n'; + } +}; + +#endif //BATTLE_FOR_HONOR_FIELD_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.cpp new file mode 100644 index 000000000..dac943a2d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.cpp @@ -0,0 +1,35 @@ +#include "FieldIterator.h" + +//написать геттеры и сеттеры +FieldIterator::FieldIterator(Field *field) : active(true), field(field), curWidth(0), curHeight(0){ + if (field->field[curWidth][curHeight].unit == nullptr) + this->operator++(); +} + +bool FieldIterator::isActive() +{ + return active; +} + +Cell *FieldIterator::operator->() +{ + return &field->field[curWidth][curHeight]; +} + +Cell *FieldIterator::operator++() +{ + do{ + if (curWidth + 1 == field->lengthX){ + if (curHeight + 1 == field->lengthY){ + active = false; + return nullptr; + } + curWidth = 0; + curHeight++; + } + else + curWidth++; + } while (field->field[curWidth][curHeight].unit == nullptr); + return &field->field[curWidth][curHeight]; +} +#include "FieldIterator.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.h new file mode 100644 index 000000000..604bdac44 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Battle Field/FieldIterator.h @@ -0,0 +1,28 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_FIELDITERATOR_H +#define BATTLE_FOR_HONOR_FIELDITERATOR_H + +#include "Field.h" + +class FieldIterator { + +public: + FieldIterator(Field *field); + + bool isActive(); + + Cell *operator->(); + + Cell *operator++(); + +private: + bool active; + Field *field; + unsigned curWidth; + unsigned curHeight; +}; + +#endif //BATTLE_FOR_HONOR_FIELDITERATOR_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/CMakeLists.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/CMakeLists.txt new file mode 100644 index 000000000..3692004e5 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.15) +project(Battle_For_Honor) + +set(CMAKE_CXX_STANDARD 17) + +add_executable(Battle_For_Honor main.cpp Units/Unit.cpp Units/Unit.h "Battle Field/Field.cpp" "Battle Field/Field.h" "Battle Field/Cell.cpp" "Battle Field/Cell.h" Units/Footman.cpp Units/Footman.h Units/Archer.cpp Units/Archer.h Units/Horseman.cpp Units/Horseman.h Units/Swordsman.cpp Units/Swordsman.h Units/Attributes.cpp Units/Attributes.h "Main Base/Base.cpp" "Main Base/Base.h" Units/Spearman.cpp Units/Spearman.h Units/Damage.cpp Units/Damage.h Units/Armour.cpp Units/Armour.h Units/HorseArcher.cpp Units/HorseArcher.h Units/SpearHorse.cpp Units/SpearHorse.h Units/LongBowman.cpp Units/LongBowman.h Units/Crossbows.cpp Units/Crossbows.h "Battle Field/FieldIterator.cpp" "Battle Field/FieldIterator.h") \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.cpp new file mode 100644 index 000000000..e575cdc4b --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Base.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.h new file mode 100644 index 000000000..3069160ef --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Main Base/Base.h @@ -0,0 +1,18 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_BASE_H +#define BATTLE_FOR_HONOR_BASE_H + + +#include "../Units/Unit.h" + +class Base : Unit{ + Base(){ + + } +}; + + +#endif //BATTLE_FOR_HONOR_BASE_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.cpp new file mode 100644 index 000000000..87cf0f882 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Archer.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.h new file mode 100644 index 000000000..709ec89f7 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Archer.h @@ -0,0 +1,16 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_ARCHER_H +#define BATTLE_FOR_HONOR_ARCHER_H + + +#include "Unit.h" + +class Archer : public Unit { + +}; + + +#endif //BATTLE_FOR_HONOR_ARCHER_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.cpp new file mode 100644 index 000000000..f338afc99 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.cpp @@ -0,0 +1,25 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Armour.h" + +void Armour::set_type(std::string type_armour){ + if (type_armour == "light"){ + this->type_armour = "light"; + this->multiply = 5; + } + if (type_armour == "medium"){ + this->type_armour = "medium"; + this->multiply = 15; + } + if (type_armour == "hard"){ + this->type_armour = "hard"; + this->multiply = 20; + } + if (type_armour == "null"){ + this->type_armour = "null"; + this->multiply = 0; + } + +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.h new file mode 100644 index 000000000..447692346 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Armour.h @@ -0,0 +1,26 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_ARMOUR_H +#define BATTLE_FOR_HONOR_ARMOUR_H + + +#include + +class Armour{ + private: + std::string type_armour; + int multiply = 0; + public: + Armour(){ + this->set_type("null"); + } + Armour(std::string type){ + type_armour = std::move(type); + } + void set_type(std::string type_armour); +}; + + +#endif //BATTLE_FOR_HONOR_ARMOUR_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.cpp new file mode 100644 index 000000000..0850e475f --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.cpp @@ -0,0 +1,44 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Attributes.h" + +int Attributes::getDistance(){ + return this->distance; +} + +int Attributes::getSpeed(){ + return this->speed; +} + +char Attributes::getSymbol(){ + return this->symbol; +} + +Armour* Attributes::getArmour(){ + return this->armour; +} + +Damage* Attributes::getDamage(){ + return this->damage; +} + +void Attributes::setDistance(int distance){ + if(distance > 0) + this->distance = distance; + +} +void Attributes::setSpeed(int speed){ + if(speed > 0) + this->speed = speed; +} +void Attributes::setSymbol(char symbol){ + this->symbol = symbol; +} +void Attributes::setArmour(std::string armour){ + this->armour->set_type(armour); +} +void Attributes::setDamage(std::string damage){ + this->damage->set_type(damage); +} diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.h new file mode 100644 index 000000000..5ac03e622 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Attributes.h @@ -0,0 +1,41 @@ +#ifndef BATTLE_FOR_HONOR_ATTRIBUTES_H +#define BATTLE_FOR_HONOR_ATTRIBUTES_H + + +#include "Damage.h" +#include "Armour.h" + +class Attributes{ + + +private: + int distance; + int speed; + char symbol; + Armour* armour; + Damage* damage; +public: + Attributes(){ + distance = 0; + speed = 0; + symbol = 0; + armour = new Armour(); + damage = new Damage(); + } + //getters + int getDistance(); + int getSpeed(); + char getSymbol(); + Armour* getArmour(); + Damage* getDamage(); + //setters + void setDistance(int distance); + void setSpeed(int speed); + void setSymbol(char symbol); + void setArmour(std::string armour); + void setDamage(std::string damage); + +}; + + +#endif //BATTLE_FOR_HONOR_ATTRIBUTES_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.cpp new file mode 100644 index 000000000..0c9bcbc4a --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Crossbows.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.h new file mode 100644 index 000000000..bf7650216 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Crossbows.h @@ -0,0 +1,25 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_CROSSBOWS_H +#define BATTLE_FOR_HONOR_CROSSBOWS_H + + +#include "Archer.h" + +class Crossbows : Archer{ + Crossbows(int x, int y){ + this->setHealth(100); + this->setArmour("hard"); + this->setDamage("hard"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol('C'); + } +}; + + +#endif //BATTLE_FOR_HONOR_CROSSBOWS_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.cpp new file mode 100644 index 000000000..70386c3b0 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.cpp @@ -0,0 +1,20 @@ +#include "Damage.h" +void Damage::set_type(std::string type_damage){ + if (type_damage == "light"){ + this->type_damage = "light"; + this->multiply = 5; + } + if (type_damage == "pierce"){ + this->type_damage = "pierce"; + this->multiply = 15; + } + if (type_damage == "hard"){ + this->type_damage = "hard"; + this->multiply = 20; + } + if (type_damage == "null"){ + this->type_damage = "null"; + this->multiply = 0; + } + +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.h new file mode 100644 index 000000000..fd98856c3 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Damage.h @@ -0,0 +1,28 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_DAMAGE_H +#define BATTLE_FOR_HONOR_DAMAGE_H + + +#include +#include + + +class Damage{ +private: + std::string type_damage; + int multiply = 0; +public: + Damage(){ + this->set_type("null"); + } + Damage(std::string type){ + type_damage = std::move(type); + } + void set_type(std::string type_damage); +}; + + +#endif //BATTLE_FOR_HONOR_DAMAGE_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.cpp new file mode 100644 index 000000000..87e05092d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Footman.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.h new file mode 100644 index 000000000..8c608e0a7 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Footman.h @@ -0,0 +1,16 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_FOOTMAN_H +#define BATTLE_FOR_HONOR_FOOTMAN_H + + +#include "Unit.h" + +class Footman : public Unit { + +}; + + +#endif //BATTLE_FOR_HONOR_FOOTMAN_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.cpp new file mode 100644 index 000000000..d0c0d6604 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "HorseArcher.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.h new file mode 100644 index 000000000..f982c610b --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/HorseArcher.h @@ -0,0 +1,27 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_HORSEARCHER_H +#define BATTLE_FOR_HONOR_HORSEARCHER_H + + +#include "Horseman.h" + +class HorseArcher : Horseman { +public: + HorseArcher(int x, int y){ + this->setHealth(100); + this->setArmour("light"); + this->setDamage("pierce"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol('H'); + } +}; + + + +#endif //BATTLE_FOR_HONOR_HORSEARCHER_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.cpp new file mode 100644 index 000000000..ad6dbbebb --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Horseman.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.h new file mode 100644 index 000000000..baaca98af --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Horseman.h @@ -0,0 +1,16 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_HORSEMAN_H +#define BATTLE_FOR_HONOR_HORSEMAN_H + + +#include "Unit.h" + +class Horseman : public Unit { + +}; + + +#endif //BATTLE_FOR_HONOR_HORSEMAN_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.cpp new file mode 100644 index 000000000..832590728 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "LongBowman.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.h new file mode 100644 index 000000000..f88803e39 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/LongBowman.h @@ -0,0 +1,25 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_LONGBOWMAN_H +#define BATTLE_FOR_HONOR_LONGBOWMAN_H + + +#include "Archer.h" + +class LongBowman : Archer { + LongBowman(int x, int y){ + this->setHealth(100); + this->setArmour("medium"); + this->setDamage("hard"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol('8'); + } +}; + + +#endif //BATTLE_FOR_HONOR_LONGBOWMAN_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.cpp new file mode 100644 index 000000000..27b7f7011 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "SpearHorse.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.h new file mode 100644 index 000000000..0939576ea --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/SpearHorse.h @@ -0,0 +1,24 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_SPEARHORSE_H +#define BATTLE_FOR_HONOR_SPEARHORSE_H + + +#include "Horseman.h" + +class SpearHorse : Horseman{ + SpearHorse(int x, int y){ + this->setHealth(100); + this->setArmour("medium"); + this->setDamage("pierce"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol('P'); + } +}; + +#endif //BATTLE_FOR_HONOR_SPEARHORSE_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.cpp new file mode 100644 index 000000000..2a3720120 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.cpp @@ -0,0 +1,5 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Spearman.h" diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.h new file mode 100644 index 000000000..42a94902a --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Spearman.h @@ -0,0 +1,27 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_SPEARMAN_H +#define BATTLE_FOR_HONOR_SPEARMAN_H + + +#include "Footman.h" + +class Spearman : public Footman{ +public: + Spearman(int x, int y) + { + this->setHealth(90); + this->setArmour("light"); + this->setDamage("light"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol(180); + } +}; + + +#endif //BATTLE_FOR_HONOR_SPEARMAN_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.cpp new file mode 100644 index 000000000..0292d804d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.cpp @@ -0,0 +1,7 @@ +// +// Created by anton on 02.03.2020. +// + +#include "Swordsman.h" + + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.h new file mode 100644 index 000000000..182e97880 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Swordsman.h @@ -0,0 +1,26 @@ +// +// Created by anton on 02.03.2020. +// + +#ifndef BATTLE_FOR_HONOR_SWORDSMAN_H +#define BATTLE_FOR_HONOR_SWORDSMAN_H + + +#include "Footman.h" + +class Swordsman : public Footman { +public: + Swordsman(int x, int y){ + this->setHealth(100); + this->setArmour("medium"); + this->setDamage("pierce"); + this->setDistance(1); + this->setSpeed(1); + this->setX(x); + this->setY(y); + this->setSymbol('S'); + } +}; + + +#endif //BATTLE_FOR_HONOR_SWORDSMAN_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.cpp new file mode 100644 index 000000000..f6393d0ac --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.cpp @@ -0,0 +1,63 @@ +#include "Unit.h" + +Unit::Unit() { + x = 0; + y = 0; + health = 0; + stats = Attributes(); +} + +int Unit::getX(){ + return this->x; +} + +int Unit::getY(){ + return this->y; +} + +Attributes Unit::getStats(){ + return this->stats; +} + +int Unit::getHealth(){ + return this->health; +} +char Unit::getSymbol() { + return this->getStats().getSymbol(); +} + +void Unit::setStats(Attributes stats) { + this->stats = stats; +} + +void Unit::setHealth(int health){ + if(health >= 0) + this->health = health; +} +void Unit::setX(int x){ + if(x >= 0) + this->x = x; +} +void Unit::setY(int y){ + if(y >= 0) + this->y = y; +} + +void Unit::setDistance(int distance){ + if(distance > 0) + this->stats.setDistance(distance); + +} +void Unit::setSpeed(int speed){ + if(speed > 0) + this->stats.setSpeed(speed); +} +void Unit::setSymbol(char symbol){ + this->stats.setSymbol(symbol); +} +void Unit::setArmour(std::string armour){ + this->stats.setArmour(armour); +} +void Unit::setDamage(std::string damage){ + this->stats.setDamage(damage); +} \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.h b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.h new file mode 100644 index 000000000..b3c740041 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/Units/Unit.h @@ -0,0 +1,36 @@ +#ifndef BATTLE_FOR_HONOR_UNIT_H +#define BATTLE_FOR_HONOR_UNIT_H + + +#include "Attributes.h" + +class Unit { +private: + Attributes stats; + int x; + int y; + int health; +public: + int getX(); + int getY(); + Attributes getStats(); + int getHealth(); + int getDistance(); + int getSpeed(); + char getSymbol(); + Armour* getArmour(); + Damage* getDamage(); + Unit(); + void setStats(Attributes stats); + void setHealth(int health); + void setX(int x); + void setY(int Y); + void setDistance(int distance); + void setSpeed(int speed); + void setSymbol(char symbol); + void setArmour(std::string armour); + void setDamage(std::string damage); +}; + + +#endif //BATTLE_FOR_HONOR_UNIT_H diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.cbp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.cbp new file mode 100644 index 000000000..3cfe7915c --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.cbp @@ -0,0 +1,192 @@ + + + + + + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.exe b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.exe new file mode 100644 index 000000000..7a4597eb8 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Battle_For_Honor.exe differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeCache.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeCache.txt new file mode 100644 index 000000000..83a3d0398 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeCache.txt @@ -0,0 +1,410 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug +# It was generated by CMake: C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Value Computed by CMake +Battle_For_Honor_BINARY_DIR:STATIC=C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug + +//Value Computed by CMake +Battle_For_Honor_SOURCE_DIR:STATIC=C:/Users/danma/Desktop/Battle_For_Honor + +//Path to a program. +CMAKE_AR:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ar.exe + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Debug + +//Id string of the compiler for the CodeBlocks IDE. Automatically +// detected when left empty +CMAKE_CODEBLOCKS_COMPILER_ID:STRING= + +//The CodeBlocks executable +CMAKE_CODEBLOCKS_EXECUTABLE:FILEPATH=CMAKE_CODEBLOCKS_EXECUTABLE-NOTFOUND + +//Additional command line arguments when CodeBlocks invokes make. +// Enter e.g. -j to get parallel builds +CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//C compiler +CMAKE_C_COMPILER:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/Battle_For_Honor + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Battle_For_Honor + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_SH:FILEPATH=CMAKE_SH-NOTFOUND + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/strip.exe + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=15 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL=CodeBlocks +//CXX compiler system defined macros +CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS:INTERNAL=__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;8;__GNUC_MINOR__;1;__GNUC_PATCHLEVEL__;0;__VERSION__;"8.1.0";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;12;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;16;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;short unsigned int;__WINT_TYPE__;short unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;signed char;__INT_FAST16_TYPE__;short int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST16_TYPE__;short unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__has_include(STR);__has_include__(STR);__has_include_next(STR);__has_include_next__(STR);__GXX_ABI_VERSION;1012;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffff;__WCHAR_MIN__;0;__WINT_MAX__;0xffff;__WINT_MIN__;0;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;16;__WINT_WIDTH__;16;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffff;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffU;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffff;__INT32_C(c);c;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffU;__UINT32_C(c);c ## U;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7f;__INT_FAST8_WIDTH__;8;__INT_FAST16_MAX__;0x7fff;__INT_FAST16_WIDTH__;16;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xff;__UINT_FAST16_MAX__;0xffff;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;2;__GCC_IEC_559_COMPLEX;2;__FLT_EVAL_METHOD__;2;__FLT_EVAL_METHOD_TS_18661_3__;2;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.40282346638528859811704183484516925e+38F;__FLT_MIN__;1.17549435082228750796873653722224568e-38F;__FLT_EPSILON__;1.19209289550781250000000000000000000e-7F;__FLT_DENORM_MIN__;1.40129846432481707092372958328991613e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.79769313486231570814527423731704357e+308L);__DBL_MIN__;((double)2.22507385850720138309023271733240406e-308L);__DBL_EPSILON__;((double)2.22044604925031308084726333618164062e-16L);__DBL_DENORM_MIN__;((double)4.94065645841246544176568792868221372e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_DIG__;18;__LDBL_MIN_EXP__;(-16381);__LDBL_MIN_10_EXP__;(-4931);__LDBL_MAX_EXP__;16384;__LDBL_MAX_10_EXP__;4932;__DECIMAL_DIG__;21;__LDBL_DECIMAL_DIG__;21;__LDBL_MAX__;1.18973149535723176502126385303097021e+4932L;__LDBL_MIN__;3.36210314311209350626267781732175260e-4932L;__LDBL_EPSILON__;1.08420217248550443400745280086994171e-19L;__LDBL_DENORM_MIN__;3.64519953188247460252840593361941982e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.40282346638528859811704183484516925e+38F32;__FLT32_MIN__;1.17549435082228750796873653722224568e-38F32;__FLT32_EPSILON__;1.19209289550781250000000000000000000e-7F32;__FLT32_DENORM_MIN__;1.40129846432481707092372958328991613e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.79769313486231570814527423731704357e+308F64;__FLT64_MIN__;2.22507385850720138309023271733240406e-308F64;__FLT64_EPSILON__;2.22044604925031308084726333618164062e-16F64;__FLT64_DENORM_MIN__;4.94065645841246544176568792868221372e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT128_MANT_DIG__;113;__FLT128_DIG__;33;__FLT128_MIN_EXP__;(-16381);__FLT128_MIN_10_EXP__;(-4931);__FLT128_MAX_EXP__;16384;__FLT128_MAX_10_EXP__;4932;__FLT128_DECIMAL_DIG__;36;__FLT128_MAX__;1.18973149535723176508575932662800702e+4932F128;__FLT128_MIN__;3.36210314311209350626267781732175260e-4932F128;__FLT128_EPSILON__;1.92592994438723585305597794258492732e-34F128;__FLT128_DENORM_MIN__;6.47517511943802511092443895822764655e-4966F128;__FLT128_HAS_DENORM__;1;__FLT128_HAS_INFINITY__;1;__FLT128_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.79769313486231570814527423731704357e+308F32x;__FLT32X_MIN__;2.22507385850720138309023271733240406e-308F32x;__FLT32X_EPSILON__;2.22044604925031308084726333618164062e-16F32x;__FLT32X_DENORM_MIN__;4.94065645841246544176568792868221372e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__FLT64X_MANT_DIG__;64;__FLT64X_DIG__;18;__FLT64X_MIN_EXP__;(-16381);__FLT64X_MIN_10_EXP__;(-4931);__FLT64X_MAX_EXP__;16384;__FLT64X_MAX_10_EXP__;4932;__FLT64X_DECIMAL_DIG__;21;__FLT64X_MAX__;1.18973149535723176502126385303097021e+4932F64x;__FLT64X_MIN__;3.36210314311209350626267781732175260e-4932F64x;__FLT64X_EPSILON__;1.08420217248550443400745280086994171e-19F64x;__FLT64X_DENORM_MIN__;3.64519953188247460252840593361941982e-4951F64x;__FLT64X_HAS_DENORM__;1;__FLT64X_HAS_INFINITY__;1;__FLT64X_HAS_QUIET_NAN__;1;__DEC32_MANT_DIG__;7;__DEC32_MIN_EXP__;(-94);__DEC32_MAX_EXP__;97;__DEC32_MIN__;1E-95DF;__DEC32_MAX__;9.999999E96DF;__DEC32_EPSILON__;1E-6DF;__DEC32_SUBNORMAL_MIN__;0.000001E-95DF;__DEC64_MANT_DIG__;16;__DEC64_MIN_EXP__;(-382);__DEC64_MAX_EXP__;385;__DEC64_MIN__;1E-383DD;__DEC64_MAX__;9.999999999999999E384DD;__DEC64_EPSILON__;1E-15DD;__DEC64_SUBNORMAL_MIN__;0.000000000000001E-383DD;__DEC128_MANT_DIG__;34;__DEC128_MIN_EXP__;(-6142);__DEC128_MAX_EXP__;6145;__DEC128_MIN__;1E-6143DL;__DEC128_MAX__;9.999999999999999999999999999999999E6144DL;__DEC128_EPSILON__;1E-33DL;__DEC128_SUBNORMAL_MIN__;0.000000000000000000000000000000001E-6143DL;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__;_;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__GCC_HAVE_DWARF2_CFI_ASM;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;2;__SIZEOF_WINT_T__;2;__SIZEOF_PTRDIFF_T__;4;__i386;1;__i386__;1;i386;1;__SIZEOF_FLOAT80__;12;__SIZEOF_FLOAT128__;16;__ATOMIC_HLE_ACQUIRE;65536;__ATOMIC_HLE_RELEASE;131072;__GCC_ASM_FLAG_OUTPUTS__;1;__i686;1;__i686__;1;__pentiumpro;1;__pentiumpro__;1;__code_model_32__;1;__SEG_FS;1;__SEG_GS;1;_X86_;1;__stdcall;__attribute__((__stdcall__));__fastcall;__attribute__((__fastcall__));__thiscall;__attribute__((__thiscall__));__cdecl;__attribute__((__cdecl__));_stdcall;__attribute__((__stdcall__));_fastcall;__attribute__((__fastcall__));_thiscall;__attribute__((__thiscall__));_cdecl;__attribute__((__cdecl__));__GXX_MERGED_TYPEINFO_NAMES;0;__GXX_TYPEINFO_EQUALITY_INLINE;0;__MSVCRT__;1;__MINGW32__;1;_WIN32;1;__WIN32;1;__WIN32__;1;WIN32;1;__WINNT;1;__WINNT__;1;WINNT;1;_INTEGRAL_MAX_BITS;64;__declspec(x);__attribute__((x));__DECIMAL_BID_FORMAT__;1;_REENTRANT;1;__STDC__;1;__cplusplus;201402L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;8;__GNUC_MINOR__;1;__GNUC_PATCHLEVEL__;0;__VERSION__;"8.1.0";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;12;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;16;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__GNUG__;8;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;short unsigned int;__WINT_TYPE__;short unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;signed char;__INT_FAST16_TYPE__;short int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST16_TYPE__;short unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__has_include(STR);__has_include__(STR);__has_include_next(STR);__has_include_next__(STR);__GXX_WEAK__;1;__DEPRECATED;1;__GXX_RTTI;1;__cpp_rtti;199711;__GXX_EXPERIMENTAL_CXX0X__;1;__cpp_binary_literals;201304;__cpp_hex_float;201603;__cpp_runtime_arrays;198712;__cpp_unicode_characters;200704;__cpp_raw_strings;200710;__cpp_unicode_literals;200710;__cpp_user_defined_literals;200809;__cpp_lambdas;200907;__cpp_range_based_for;200907;__cpp_static_assert;200410;__cpp_decltype;200707;__cpp_attributes;200809;__cpp_rvalue_reference;200610;__cpp_rvalue_references;200610;__cpp_variadic_templates;200704;__cpp_initializer_lists;200806;__cpp_delegating_constructors;200604;__cpp_nsdmi;200809;__cpp_inheriting_constructors;201511;__cpp_ref_qualifiers;200710;__cpp_alias_templates;200704;__cpp_return_type_deduction;201304;__cpp_init_captures;201304;__cpp_generic_lambdas;201304;__cpp_constexpr;201304;__cpp_decltype_auto;201304;__cpp_aggregate_nsdmi;201304;__cpp_variable_templates;201304;__cpp_digit_separators;201309;__cpp_sized_deallocation;201309;__cpp_threadsafe_static_init;200806;__EXCEPTIONS;1;__cpp_exceptions;199711;__GXX_ABI_VERSION;1012;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffff;__WCHAR_MIN__;0;__WINT_MAX__;0xffff;__WINT_MIN__;0;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;16;__WINT_WIDTH__;16;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffff;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffU;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffff;__INT32_C(c);c;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffU;__UINT32_C(c);c ## U;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7f;__INT_FAST8_WIDTH__;8;__INT_FAST16_MAX__;0x7fff;__INT_FAST16_WIDTH__;16;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xff;__UINT_FAST16_MAX__;0xffff;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;2;__GCC_IEC_559_COMPLEX;2;__FLT_EVAL_METHOD__;2;__FLT_EVAL_METHOD_TS_18661_3__;2;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.40282346638528859811704183484516925e+38F;__FLT_MIN__;1.17549435082228750796873653722224568e-38F;__FLT_EPSILON__;1.19209289550781250000000000000000000e-7F;__FLT_DENORM_MIN__;1.40129846432481707092372958328991613e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;double(1.79769313486231570814527423731704357e+308L);__DBL_MIN__;double(2.22507385850720138309023271733240406e-308L);__DBL_EPSILON__;double(2.22044604925031308084726333618164062e-16L);__DBL_DENORM_MIN__;double(4.94065645841246544176568792868221372e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_DIG__;18;__LDBL_MIN_EXP__;(-16381);__LDBL_MIN_10_EXP__;(-4931);__LDBL_MAX_EXP__;16384;__LDBL_MAX_10_EXP__;4932;__DECIMAL_DIG__;21;__LDBL_DECIMAL_DIG__;21;__LDBL_MAX__;1.18973149535723176502126385303097021e+4932L;__LDBL_MIN__;3.36210314311209350626267781732175260e-4932L;__LDBL_EPSILON__;1.08420217248550443400745280086994171e-19L;__LDBL_DENORM_MIN__;3.64519953188247460252840593361941982e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.40282346638528859811704183484516925e+38F32;__FLT32_MIN__;1.17549435082228750796873653722224568e-38F32;__FLT32_EPSILON__;1.19209289550781250000000000000000000e-7F32;__FLT32_DENORM_MIN__;1.40129846432481707092372958328991613e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.79769313486231570814527423731704357e+308F64;__FLT64_MIN__;2.22507385850720138309023271733240406e-308F64;__FLT64_EPSILON__;2.22044604925031308084726333618164062e-16F64;__FLT64_DENORM_MIN__;4.94065645841246544176568792868221372e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT128_MANT_DIG__;113;__FLT128_DIG__;33;__FLT128_MIN_EXP__;(-16381);__FLT128_MIN_10_EXP__;(-4931);__FLT128_MAX_EXP__;16384;__FLT128_MAX_10_EXP__;4932;__FLT128_DECIMAL_DIG__;36;__FLT128_MAX__;1.18973149535723176508575932662800702e+4932F128;__FLT128_MIN__;3.36210314311209350626267781732175260e-4932F128;__FLT128_EPSILON__;1.92592994438723585305597794258492732e-34F128;__FLT128_DENORM_MIN__;6.47517511943802511092443895822764655e-4966F128;__FLT128_HAS_DENORM__;1;__FLT128_HAS_INFINITY__;1;__FLT128_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.79769313486231570814527423731704357e+308F32x;__FLT32X_MIN__;2.22507385850720138309023271733240406e-308F32x;__FLT32X_EPSILON__;2.22044604925031308084726333618164062e-16F32x;__FLT32X_DENORM_MIN__;4.94065645841246544176568792868221372e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__FLT64X_MANT_DIG__;64;__FLT64X_DIG__;18;__FLT64X_MIN_EXP__;(-16381);__FLT64X_MIN_10_EXP__;(-4931);__FLT64X_MAX_EXP__;16384;__FLT64X_MAX_10_EXP__;4932;__FLT64X_DECIMAL_DIG__;21;__FLT64X_MAX__;1.18973149535723176502126385303097021e+4932F64x;__FLT64X_MIN__;3.36210314311209350626267781732175260e-4932F64x;__FLT64X_EPSILON__;1.08420217248550443400745280086994171e-19F64x;__FLT64X_DENORM_MIN__;3.64519953188247460252840593361941982e-4951F64x;__FLT64X_HAS_DENORM__;1;__FLT64X_HAS_INFINITY__;1;__FLT64X_HAS_QUIET_NAN__;1;__DEC32_MANT_DIG__;7;__DEC32_MIN_EXP__;(-94);__DEC32_MAX_EXP__;97;__DEC32_MIN__;1E-95DF;__DEC32_MAX__;9.999999E96DF;__DEC32_EPSILON__;1E-6DF;__DEC32_SUBNORMAL_MIN__;0.000001E-95DF;__DEC64_MANT_DIG__;16;__DEC64_MIN_EXP__;(-382);__DEC64_MAX_EXP__;385;__DEC64_MIN__;1E-383DD;__DEC64_MAX__;9.999999999999999E384DD;__DEC64_EPSILON__;1E-15DD;__DEC64_SUBNORMAL_MIN__;0.000000000000001E-383DD;__DEC128_MANT_DIG__;34;__DEC128_MIN_EXP__;(-6142);__DEC128_MAX_EXP__;6145;__DEC128_MIN__;1E-6143DL;__DEC128_MAX__;9.999999999999999999999999999999999E6144DL;__DEC128_EPSILON__;1E-33DL;__DEC128_SUBNORMAL_MIN__;0.000000000000000000000000000000001E-6143DL;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__;_;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__WCHAR_UNSIGNED__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__GCC_HAVE_DWARF2_CFI_ASM;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;2;__SIZEOF_WINT_T__;2;__SIZEOF_PTRDIFF_T__;4;__i386;1;__i386__;1;i386;1;__SIZEOF_FLOAT80__;12;__SIZEOF_FLOAT128__;16;__ATOMIC_HLE_ACQUIRE;65536;__ATOMIC_HLE_RELEASE;131072;__GCC_ASM_FLAG_OUTPUTS__;1;__i686;1;__i686__;1;__pentiumpro;1;__pentiumpro__;1;__code_model_32__;1;__SEG_FS;1;__SEG_GS;1;_X86_;1;__stdcall;__attribute__((__stdcall__));__fastcall;__attribute__((__fastcall__));__thiscall;__attribute__((__thiscall__));__cdecl;__attribute__((__cdecl__));_stdcall;__attribute__((__stdcall__));_fastcall;__attribute__((__fastcall__));_thiscall;__attribute__((__thiscall__));_cdecl;__attribute__((__cdecl__));__GXX_MERGED_TYPEINFO_NAMES;0;__GXX_TYPEINFO_EQUALITY_INLINE;0;__MSVCRT__;1;__MINGW32__;1;_WIN32;1;__WIN32;1;__WIN32__;1;WIN32;1;__WINNT;1;__WINNT__;1;WINNT;1;_INTEGRAL_MAX_BITS;64;__declspec(x);__attribute__((x));__DECIMAL_BID_FORMAT__;1;_REENTRANT;1 +//CXX compiler system include directories +CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS:INTERNAL=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include +//C compiler system defined macros +CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS:INTERNAL=__STDC__;1;__STDC_VERSION__;201710L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__STDC_HOSTED__;1;__GNUC__;8;__GNUC_MINOR__;1;__GNUC_PATCHLEVEL__;0;__VERSION__;"8.1.0";__ATOMIC_RELAXED;0;__ATOMIC_SEQ_CST;5;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_CONSUME;1;__FINITE_MATH_ONLY__;0;__SIZEOF_INT__;4;__SIZEOF_LONG__;4;__SIZEOF_LONG_LONG__;8;__SIZEOF_SHORT__;2;__SIZEOF_FLOAT__;4;__SIZEOF_DOUBLE__;8;__SIZEOF_LONG_DOUBLE__;12;__SIZEOF_SIZE_T__;4;__CHAR_BIT__;8;__BIGGEST_ALIGNMENT__;16;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__FLOAT_WORD_ORDER__;__ORDER_LITTLE_ENDIAN__;__SIZEOF_POINTER__;4;__SIZE_TYPE__;unsigned int;__PTRDIFF_TYPE__;int;__WCHAR_TYPE__;short unsigned int;__WINT_TYPE__;short unsigned int;__INTMAX_TYPE__;long long int;__UINTMAX_TYPE__;long long unsigned int;__CHAR16_TYPE__;short unsigned int;__CHAR32_TYPE__;unsigned int;__SIG_ATOMIC_TYPE__;int;__INT8_TYPE__;signed char;__INT16_TYPE__;short int;__INT32_TYPE__;int;__INT64_TYPE__;long long int;__UINT8_TYPE__;unsigned char;__UINT16_TYPE__;short unsigned int;__UINT32_TYPE__;unsigned int;__UINT64_TYPE__;long long unsigned int;__INT_LEAST8_TYPE__;signed char;__INT_LEAST16_TYPE__;short int;__INT_LEAST32_TYPE__;int;__INT_LEAST64_TYPE__;long long int;__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST16_TYPE__;short unsigned int;__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST64_TYPE__;long long unsigned int;__INT_FAST8_TYPE__;signed char;__INT_FAST16_TYPE__;short int;__INT_FAST32_TYPE__;int;__INT_FAST64_TYPE__;long long int;__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST16_TYPE__;short unsigned int;__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST64_TYPE__;long long unsigned int;__INTPTR_TYPE__;int;__UINTPTR_TYPE__;unsigned int;__has_include(STR);__has_include__(STR);__has_include_next(STR);__has_include_next__(STR);__GXX_ABI_VERSION;1012;__SCHAR_MAX__;0x7f;__SHRT_MAX__;0x7fff;__INT_MAX__;0x7fffffff;__LONG_MAX__;0x7fffffffL;__LONG_LONG_MAX__;0x7fffffffffffffffLL;__WCHAR_MAX__;0xffff;__WCHAR_MIN__;0;__WINT_MAX__;0xffff;__WINT_MIN__;0;__PTRDIFF_MAX__;0x7fffffff;__SIZE_MAX__;0xffffffffU;__SCHAR_WIDTH__;8;__SHRT_WIDTH__;16;__INT_WIDTH__;32;__LONG_WIDTH__;32;__LONG_LONG_WIDTH__;64;__WCHAR_WIDTH__;16;__WINT_WIDTH__;16;__PTRDIFF_WIDTH__;32;__SIZE_WIDTH__;32;__INTMAX_MAX__;0x7fffffffffffffffLL;__INTMAX_C(c);c ## LL;__UINTMAX_MAX__;0xffffffffffffffffULL;__UINTMAX_C(c);c ## ULL;__INTMAX_WIDTH__;64;__SIG_ATOMIC_MAX__;0x7fffffff;__SIG_ATOMIC_MIN__;(-__SIG_ATOMIC_MAX__ - 1);__SIG_ATOMIC_WIDTH__;32;__INT8_MAX__;0x7f;__INT16_MAX__;0x7fff;__INT32_MAX__;0x7fffffff;__INT64_MAX__;0x7fffffffffffffffLL;__UINT8_MAX__;0xff;__UINT16_MAX__;0xffff;__UINT32_MAX__;0xffffffffU;__UINT64_MAX__;0xffffffffffffffffULL;__INT_LEAST8_MAX__;0x7f;__INT8_C(c);c;__INT_LEAST8_WIDTH__;8;__INT_LEAST16_MAX__;0x7fff;__INT16_C(c);c;__INT_LEAST16_WIDTH__;16;__INT_LEAST32_MAX__;0x7fffffff;__INT32_C(c);c;__INT_LEAST32_WIDTH__;32;__INT_LEAST64_MAX__;0x7fffffffffffffffLL;__INT64_C(c);c ## LL;__INT_LEAST64_WIDTH__;64;__UINT_LEAST8_MAX__;0xff;__UINT8_C(c);c;__UINT_LEAST16_MAX__;0xffff;__UINT16_C(c);c;__UINT_LEAST32_MAX__;0xffffffffU;__UINT32_C(c);c ## U;__UINT_LEAST64_MAX__;0xffffffffffffffffULL;__UINT64_C(c);c ## ULL;__INT_FAST8_MAX__;0x7f;__INT_FAST8_WIDTH__;8;__INT_FAST16_MAX__;0x7fff;__INT_FAST16_WIDTH__;16;__INT_FAST32_MAX__;0x7fffffff;__INT_FAST32_WIDTH__;32;__INT_FAST64_MAX__;0x7fffffffffffffffLL;__INT_FAST64_WIDTH__;64;__UINT_FAST8_MAX__;0xff;__UINT_FAST16_MAX__;0xffff;__UINT_FAST32_MAX__;0xffffffffU;__UINT_FAST64_MAX__;0xffffffffffffffffULL;__INTPTR_MAX__;0x7fffffff;__INTPTR_WIDTH__;32;__UINTPTR_MAX__;0xffffffffU;__GCC_IEC_559;2;__GCC_IEC_559_COMPLEX;2;__FLT_EVAL_METHOD__;2;__FLT_EVAL_METHOD_TS_18661_3__;2;__DEC_EVAL_METHOD__;2;__FLT_RADIX__;2;__FLT_MANT_DIG__;24;__FLT_DIG__;6;__FLT_MIN_EXP__;(-125);__FLT_MIN_10_EXP__;(-37);__FLT_MAX_EXP__;128;__FLT_MAX_10_EXP__;38;__FLT_DECIMAL_DIG__;9;__FLT_MAX__;3.40282346638528859811704183484516925e+38F;__FLT_MIN__;1.17549435082228750796873653722224568e-38F;__FLT_EPSILON__;1.19209289550781250000000000000000000e-7F;__FLT_DENORM_MIN__;1.40129846432481707092372958328991613e-45F;__FLT_HAS_DENORM__;1;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_DIG__;15;__DBL_MIN_EXP__;(-1021);__DBL_MIN_10_EXP__;(-307);__DBL_MAX_EXP__;1024;__DBL_MAX_10_EXP__;308;__DBL_DECIMAL_DIG__;17;__DBL_MAX__;((double)1.79769313486231570814527423731704357e+308L);__DBL_MIN__;((double)2.22507385850720138309023271733240406e-308L);__DBL_EPSILON__;((double)2.22044604925031308084726333618164062e-16L);__DBL_DENORM_MIN__;((double)4.94065645841246544176568792868221372e-324L);__DBL_HAS_DENORM__;1;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_DIG__;18;__LDBL_MIN_EXP__;(-16381);__LDBL_MIN_10_EXP__;(-4931);__LDBL_MAX_EXP__;16384;__LDBL_MAX_10_EXP__;4932;__DECIMAL_DIG__;21;__LDBL_DECIMAL_DIG__;21;__LDBL_MAX__;1.18973149535723176502126385303097021e+4932L;__LDBL_MIN__;3.36210314311209350626267781732175260e-4932L;__LDBL_EPSILON__;1.08420217248550443400745280086994171e-19L;__LDBL_DENORM_MIN__;3.64519953188247460252840593361941982e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__FLT32_MANT_DIG__;24;__FLT32_DIG__;6;__FLT32_MIN_EXP__;(-125);__FLT32_MIN_10_EXP__;(-37);__FLT32_MAX_EXP__;128;__FLT32_MAX_10_EXP__;38;__FLT32_DECIMAL_DIG__;9;__FLT32_MAX__;3.40282346638528859811704183484516925e+38F32;__FLT32_MIN__;1.17549435082228750796873653722224568e-38F32;__FLT32_EPSILON__;1.19209289550781250000000000000000000e-7F32;__FLT32_DENORM_MIN__;1.40129846432481707092372958328991613e-45F32;__FLT32_HAS_DENORM__;1;__FLT32_HAS_INFINITY__;1;__FLT32_HAS_QUIET_NAN__;1;__FLT64_MANT_DIG__;53;__FLT64_DIG__;15;__FLT64_MIN_EXP__;(-1021);__FLT64_MIN_10_EXP__;(-307);__FLT64_MAX_EXP__;1024;__FLT64_MAX_10_EXP__;308;__FLT64_DECIMAL_DIG__;17;__FLT64_MAX__;1.79769313486231570814527423731704357e+308F64;__FLT64_MIN__;2.22507385850720138309023271733240406e-308F64;__FLT64_EPSILON__;2.22044604925031308084726333618164062e-16F64;__FLT64_DENORM_MIN__;4.94065645841246544176568792868221372e-324F64;__FLT64_HAS_DENORM__;1;__FLT64_HAS_INFINITY__;1;__FLT64_HAS_QUIET_NAN__;1;__FLT128_MANT_DIG__;113;__FLT128_DIG__;33;__FLT128_MIN_EXP__;(-16381);__FLT128_MIN_10_EXP__;(-4931);__FLT128_MAX_EXP__;16384;__FLT128_MAX_10_EXP__;4932;__FLT128_DECIMAL_DIG__;36;__FLT128_MAX__;1.18973149535723176508575932662800702e+4932F128;__FLT128_MIN__;3.36210314311209350626267781732175260e-4932F128;__FLT128_EPSILON__;1.92592994438723585305597794258492732e-34F128;__FLT128_DENORM_MIN__;6.47517511943802511092443895822764655e-4966F128;__FLT128_HAS_DENORM__;1;__FLT128_HAS_INFINITY__;1;__FLT128_HAS_QUIET_NAN__;1;__FLT32X_MANT_DIG__;53;__FLT32X_DIG__;15;__FLT32X_MIN_EXP__;(-1021);__FLT32X_MIN_10_EXP__;(-307);__FLT32X_MAX_EXP__;1024;__FLT32X_MAX_10_EXP__;308;__FLT32X_DECIMAL_DIG__;17;__FLT32X_MAX__;1.79769313486231570814527423731704357e+308F32x;__FLT32X_MIN__;2.22507385850720138309023271733240406e-308F32x;__FLT32X_EPSILON__;2.22044604925031308084726333618164062e-16F32x;__FLT32X_DENORM_MIN__;4.94065645841246544176568792868221372e-324F32x;__FLT32X_HAS_DENORM__;1;__FLT32X_HAS_INFINITY__;1;__FLT32X_HAS_QUIET_NAN__;1;__FLT64X_MANT_DIG__;64;__FLT64X_DIG__;18;__FLT64X_MIN_EXP__;(-16381);__FLT64X_MIN_10_EXP__;(-4931);__FLT64X_MAX_EXP__;16384;__FLT64X_MAX_10_EXP__;4932;__FLT64X_DECIMAL_DIG__;21;__FLT64X_MAX__;1.18973149535723176502126385303097021e+4932F64x;__FLT64X_MIN__;3.36210314311209350626267781732175260e-4932F64x;__FLT64X_EPSILON__;1.08420217248550443400745280086994171e-19F64x;__FLT64X_DENORM_MIN__;3.64519953188247460252840593361941982e-4951F64x;__FLT64X_HAS_DENORM__;1;__FLT64X_HAS_INFINITY__;1;__FLT64X_HAS_QUIET_NAN__;1;__DEC32_MANT_DIG__;7;__DEC32_MIN_EXP__;(-94);__DEC32_MAX_EXP__;97;__DEC32_MIN__;1E-95DF;__DEC32_MAX__;9.999999E96DF;__DEC32_EPSILON__;1E-6DF;__DEC32_SUBNORMAL_MIN__;0.000001E-95DF;__DEC64_MANT_DIG__;16;__DEC64_MIN_EXP__;(-382);__DEC64_MAX_EXP__;385;__DEC64_MIN__;1E-383DD;__DEC64_MAX__;9.999999999999999E384DD;__DEC64_EPSILON__;1E-15DD;__DEC64_SUBNORMAL_MIN__;0.000000000000001E-383DD;__DEC128_MANT_DIG__;34;__DEC128_MIN_EXP__;(-6142);__DEC128_MAX_EXP__;6145;__DEC128_MIN__;1E-6143DL;__DEC128_MAX__;9.999999999999999999999999999999999E6144DL;__DEC128_EPSILON__;1E-33DL;__DEC128_SUBNORMAL_MIN__;0.000000000000000000000000000000001E-6143DL;__REGISTER_PREFIX__; ;__USER_LABEL_PREFIX__;_;__GNUC_STDC_INLINE__;1;__NO_INLINE__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__GCC_HAVE_DWARF2_CFI_ASM;1;__PRAGMA_REDEFINE_EXTNAME;1;__SIZEOF_WCHAR_T__;2;__SIZEOF_WINT_T__;2;__SIZEOF_PTRDIFF_T__;4;__i386;1;__i386__;1;i386;1;__SIZEOF_FLOAT80__;12;__SIZEOF_FLOAT128__;16;__ATOMIC_HLE_ACQUIRE;65536;__ATOMIC_HLE_RELEASE;131072;__GCC_ASM_FLAG_OUTPUTS__;1;__i686;1;__i686__;1;__pentiumpro;1;__pentiumpro__;1;__code_model_32__;1;__SEG_FS;1;__SEG_GS;1;_X86_;1;__stdcall;__attribute__((__stdcall__));__fastcall;__attribute__((__fastcall__));__thiscall;__attribute__((__thiscall__));__cdecl;__attribute__((__cdecl__));_stdcall;__attribute__((__stdcall__));_fastcall;__attribute__((__fastcall__));_thiscall;__attribute__((__thiscall__));_cdecl;__attribute__((__cdecl__));__GXX_MERGED_TYPEINFO_NAMES;0;__GXX_TYPEINFO_EQUALITY_INLINE;0;__MSVCRT__;1;__MINGW32__;1;_WIN32;1;__WIN32;1;__WIN32__;1;WIN32;1;__WINNT;1;__WINNT__;1;WINNT;1;_INTEGRAL_MAX_BITS;64;__declspec(x);__attribute__((x));__DECIMAL_BID_FORMAT__;1;_REENTRANT;1 +//C compiler system include directories +CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS:INTERNAL=C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include +//Name of generator. +CMAKE_GENERATOR:INTERNAL=MinGW Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/danma/Desktop/Battle_For_Honor +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15 +//ADVANCED property for variable: CMAKE_SH +CMAKE_SH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake new file mode 100644 index 000000000..f0271c10d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake @@ -0,0 +1,76 @@ +set(CMAKE_C_COMPILER "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "8.1.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "MinGW") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ar.exe") +set(CMAKE_C_COMPILER_AR "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW 1) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..20b118c9e --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake @@ -0,0 +1,79 @@ +set(CMAKE_CXX_COMPILER "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "8.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/ld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW 1) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 000000000..0e6e054c5 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 000000000..777083805 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeRCCompiler.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeRCCompiler.cmake new file mode 100644 index 000000000..bf5dfb586 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeSystem.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeSystem.cmake new file mode 100644 index 000000000..e6c895727 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.18362") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.18362") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.18362") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.18362") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..b042da8c0 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,665 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.exe b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.exe new file mode 100644 index 000000000..f6c7f8f0f Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.exe differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 000000000..b65ccfd67 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,644 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.exe b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.exe new file mode 100644 index 000000000..9d9833dda Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.exe differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj new file mode 100644 index 000000000..0d74740ca Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj new file mode 100644 index 000000000..57e3c6883 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj new file mode 100644 index 000000000..b82407572 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/CXX.includecache b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/CXX.includecache new file mode 100644 index 000000000..5980fed85 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/CXX.includecache @@ -0,0 +1,32 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h +string +- + +C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h +Damage.h +C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h +Armour.h +C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + +C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h +string +- +utility +- + +C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.cpp +Unit.h +C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h + +C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +Attributes.h +C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/DependInfo.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/DependInfo.cmake new file mode 100644 index 000000000..ae2422e5c --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/DependInfo.cmake @@ -0,0 +1,37 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Field.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/FieldIterator.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Main Base/Base.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Archer.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Crossbows.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/HorseArcher.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Horseman.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/LongBowman.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/SpearHorse.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Spearman.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Swordsman.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj" + "C:/Users/danma/Desktop/Battle_For_Honor/main.cpp" "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/main.cpp.obj" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj new file mode 100644 index 000000000..42ca0ddef Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj new file mode 100644 index 000000000..e3ebb7f38 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj new file mode 100644 index 000000000..25482df8a Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj new file mode 100644 index 000000000..88ed3de30 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj new file mode 100644 index 000000000..1da090ae9 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj new file mode 100644 index 000000000..e50348b5f Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj new file mode 100644 index 000000000..3bd6313c3 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj new file mode 100644 index 000000000..ee94b1adb Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj new file mode 100644 index 000000000..1e84a6589 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj new file mode 100644 index 000000000..1ae09f825 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj new file mode 100644 index 000000000..0785d0066 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj new file mode 100644 index 000000000..40c0eacc6 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj new file mode 100644 index 000000000..790062135 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj new file mode 100644 index 000000000..68003d672 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/build.make b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/build.make new file mode 100644 index 000000000..803e9305d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/build.make @@ -0,0 +1,354 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\Users\danma\Desktop\Battle_For_Honor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug + +# Include any dependencies generated for this target. +include CMakeFiles/Battle_For_Honor.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/Battle_For_Honor.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/Battle_For_Honor.dir/flags.make + +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/Battle_For_Honor.dir/main.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\main.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\main.cpp + +CMakeFiles/Battle_For_Honor.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/main.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\main.cpp > CMakeFiles\Battle_For_Honor.dir\main.cpp.i + +CMakeFiles/Battle_For_Honor.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/main.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\main.cpp -o CMakeFiles\Battle_For_Honor.dir\main.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Unit.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Unit.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Unit.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Unit.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Unit.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Unit.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Unit.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Battle\ Field/Field.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\Field.cpp.obj -c "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Field.cpp" + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Field.cpp" > CMakeFiles\Battle_For_Honor.dir\Battle_Field\Field.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Field.cpp" -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\Field.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Battle\ Field/Cell.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\Cell.cpp.obj -c "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Cell.cpp" + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Cell.cpp" > CMakeFiles\Battle_For_Honor.dir\Battle_Field\Cell.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\Cell.cpp" -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\Cell.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Footman.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Footman.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Footman.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Footman.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Footman.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Footman.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Footman.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Archer.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Archer.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Archer.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Archer.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Archer.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Archer.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Archer.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Horseman.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Horseman.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Horseman.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Horseman.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Horseman.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Horseman.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Horseman.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Swordsman.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Swordsman.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Swordsman.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Swordsman.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Swordsman.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Swordsman.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Swordsman.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: ../Units/Attributes.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Attributes.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Attributes.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Attributes.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Attributes.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Attributes.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Attributes.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Main\ Base/Base.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Main_Base\Base.cpp.obj -c "C:\Users\danma\Desktop\Battle_For_Honor\Main Base\Base.cpp" + +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "C:\Users\danma\Desktop\Battle_For_Honor\Main Base\Base.cpp" > CMakeFiles\Battle_For_Honor.dir\Main_Base\Base.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "C:\Users\danma\Desktop\Battle_For_Honor\Main Base\Base.cpp" -o CMakeFiles\Battle_For_Honor.dir\Main_Base\Base.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Spearman.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Spearman.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Spearman.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Spearman.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Spearman.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Spearman.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Spearman.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj: ../Units/Damage.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Damage.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Damage.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Damage.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Damage.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Damage.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Damage.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj: ../Units/Armour.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Armour.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Armour.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Armour.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Armour.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Armour.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Armour.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/HorseArcher.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_14) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\HorseArcher.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\HorseArcher.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\HorseArcher.cpp > CMakeFiles\Battle_For_Honor.dir\Units\HorseArcher.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\HorseArcher.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\HorseArcher.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/SpearHorse.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_15) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\SpearHorse.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\SpearHorse.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\SpearHorse.cpp > CMakeFiles\Battle_For_Honor.dir\Units\SpearHorse.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\SpearHorse.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\SpearHorse.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/LongBowman.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_16) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\LongBowman.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\LongBowman.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\LongBowman.cpp > CMakeFiles\Battle_For_Honor.dir\Units\LongBowman.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\LongBowman.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\LongBowman.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Crossbows.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_17) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Units\Crossbows.cpp.obj -c C:\Users\danma\Desktop\Battle_For_Honor\Units\Crossbows.cpp + +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\danma\Desktop\Battle_For_Honor\Units\Crossbows.cpp > CMakeFiles\Battle_For_Honor.dir\Units\Crossbows.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\danma\Desktop\Battle_For_Honor\Units\Crossbows.cpp -o CMakeFiles\Battle_For_Honor.dir\Units\Crossbows.cpp.s + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: CMakeFiles/Battle_For_Honor.dir/flags.make +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Battle\ Field/FieldIterator.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_18) "Building CXX object CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\FieldIterator.cpp.obj -c "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\FieldIterator.cpp" + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.i" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\FieldIterator.cpp" > CMakeFiles\Battle_For_Honor.dir\Battle_Field\FieldIterator.cpp.i + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.s" + C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S "C:\Users\danma\Desktop\Battle_For_Honor\Battle Field\FieldIterator.cpp" -o CMakeFiles\Battle_For_Honor.dir\Battle_Field\FieldIterator.cpp.s + +# Object files for target Battle_For_Honor +Battle_For_Honor_OBJECTS = \ +"CMakeFiles/Battle_For_Honor.dir/main.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj" \ +"CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj" + +# External object files for target Battle_For_Honor +Battle_For_Honor_EXTERNAL_OBJECTS = + +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/main.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/build.make +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/linklibs.rsp +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/objects1.rsp +Battle_For_Honor.exe: CMakeFiles/Battle_For_Honor.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_19) "Linking CXX executable Battle_For_Honor.exe" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\Battle_For_Honor.dir\link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/Battle_For_Honor.dir/build: Battle_For_Honor.exe + +.PHONY : CMakeFiles/Battle_For_Honor.dir/build + +CMakeFiles/Battle_For_Honor.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles\Battle_For_Honor.dir\cmake_clean.cmake +.PHONY : CMakeFiles/Battle_For_Honor.dir/clean + +CMakeFiles/Battle_For_Honor.dir/depend: + $(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\danma\Desktop\Battle_For_Honor C:\Users\danma\Desktop\Battle_For_Honor C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles\Battle_For_Honor.dir\DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/Battle_For_Honor.dir/depend + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/cmake_clean.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/cmake_clean.cmake new file mode 100644 index 000000000..2be898b86 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/cmake_clean.cmake @@ -0,0 +1,29 @@ +file(REMOVE_RECURSE + "Battle_For_Honor.exe" + "Battle_For_Honor.exe.manifest" + "Battle_For_Honor.pdb" + "CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj" + "CMakeFiles/Battle_For_Honor.dir/main.cpp.obj" + "libBattle_For_Honor.dll.a" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/Battle_For_Honor.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.internal b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.internal new file mode 100644 index 000000000..2c3f6b2d3 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.internal @@ -0,0 +1,131 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.h + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Field.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Field.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.h + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Field.h + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/FieldIterator.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/FieldIterator.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Main Base/Base.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Main Base/Base.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Archer.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Archer.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Archer.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Crossbows.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Crossbows.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/HorseArcher.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/HorseArcher.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Horseman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Horseman.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Horseman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Archer.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/LongBowman.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/LongBowman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Horseman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/SpearHorse.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/SpearHorse.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Spearman.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Spearman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Swordsman.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Swordsman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.cpp + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Cell.h + C:/Users/danma/Desktop/Battle_For_Honor/Battle Field/Field.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Armour.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Attributes.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Damage.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Footman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Spearman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Swordsman.h + C:/Users/danma/Desktop/Battle_For_Honor/Units/Unit.h + C:/Users/danma/Desktop/Battle_For_Honor/main.cpp diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.make b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.make new file mode 100644 index 000000000..c168388cf --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/depend.make @@ -0,0 +1,131 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Battle\ Field/Cell.cpp +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Battle\ Field/Cell.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Battle\ Field/Cell.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Battle\ Field/Field.cpp +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Battle\ Field/Field.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Battle\ Field/Cell.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Battle\ Field/Field.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Battle\ Field/FieldIterator.cpp +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Battle\ Field/FieldIterator.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Main\ Base/Base.cpp +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Main\ Base/Base.h +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Archer.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Archer.h +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj: ../Units/Armour.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj: ../Units/Armour.h + +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: ../Units/Attributes.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj: ../Units/Damage.h + +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Archer.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Crossbows.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Crossbows.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj: ../Units/Damage.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj: ../Units/Damage.h + +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Footman.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Footman.h +CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/HorseArcher.cpp +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/HorseArcher.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/Horseman.h +CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Horseman.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Horseman.h +CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/Archer.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/LongBowman.cpp +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/LongBowman.h +CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/Horseman.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/SpearHorse.cpp +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/SpearHorse.h +CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Footman.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Spearman.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Spearman.h +CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Footman.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Swordsman.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Swordsman.h +CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Unit.cpp +CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj: ../Units/Unit.h + +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Battle\ Field/Cell.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Battle\ Field/Field.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Armour.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Attributes.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Damage.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Footman.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Spearman.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Swordsman.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../Units/Unit.h +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj: ../main.cpp + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/flags.make b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/flags.make new file mode 100644 index 000000000..1dc464443 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# compile CXX with C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe +CXX_FLAGS = -g -std=gnu++17 + +CXX_DEFINES = + +CXX_INCLUDES = + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/link.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/link.txt new file mode 100644 index 000000000..4066cf5d8 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/link.txt @@ -0,0 +1,3 @@ +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\Battle_For_Honor.dir/objects.a +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\Battle_For_Honor.dir/objects.a @CMakeFiles\Battle_For_Honor.dir\objects1.rsp +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -g -Wl,--whole-archive CMakeFiles\Battle_For_Honor.dir/objects.a -Wl,--no-whole-archive -o Battle_For_Honor.exe -Wl,--out-implib,libBattle_For_Honor.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\Battle_For_Honor.dir\linklibs.rsp diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/linklibs.rsp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/linklibs.rsp new file mode 100644 index 000000000..2742f2a2d --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/linklibs.rsp @@ -0,0 +1 @@ +-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/main.cpp.obj b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/main.cpp.obj new file mode 100644 index 000000000..27721ffc6 Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/main.cpp.obj differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects.a b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects.a new file mode 100644 index 000000000..9f714088e Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects.a differ diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects1.rsp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects1.rsp new file mode 100644 index 000000000..4d534a378 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/objects1.rsp @@ -0,0 +1 @@ +CMakeFiles/Battle_For_Honor.dir/main.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/progress.make b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/progress.make new file mode 100644 index 000000000..bf6cb7ffc --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir/progress.make @@ -0,0 +1,20 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 +CMAKE_PROGRESS_3 = 3 +CMAKE_PROGRESS_4 = 4 +CMAKE_PROGRESS_5 = 5 +CMAKE_PROGRESS_6 = 6 +CMAKE_PROGRESS_7 = 7 +CMAKE_PROGRESS_8 = 8 +CMAKE_PROGRESS_9 = 9 +CMAKE_PROGRESS_10 = 10 +CMAKE_PROGRESS_11 = 11 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..a478f681f --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/danma/Desktop/Battle_For_Honor") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeOutput.log b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeOutput.log new file mode 100644 index 000000000..840f4e599 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeOutput.log @@ -0,0 +1,534 @@ +The system is: Windows - 10.0.18362 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" + +The C compiler identification is GNU, found in "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + +The CXX compiler identification is GNU, found in "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.exe" + +Determining if the C compiler works passed with the following output: +Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_229b5/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_229b5.dir\build.make CMakeFiles/cmTC_229b5.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_229b5.dir/testCCompiler.c.obj +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -o CMakeFiles\cmTC_229b5.dir\testCCompiler.c.obj -c C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles\CMakeTmp\testCCompiler.c +Linking C executable cmTC_229b5.exe +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_229b5.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_229b5.dir/objects.a +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_229b5.dir/objects.a @CMakeFiles\cmTC_229b5.dir\objects1.rsp +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTC_229b5.dir/objects.a -Wl,--no-whole-archive -o cmTC_229b5.exe -Wl,--out-implib,libcmTC_229b5.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_229b5.dir\linklibs.rsp +mingw32-make.exe[1]: Leaving directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_f542e/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_f542e.dir\build.make CMakeFiles/cmTC_f542e.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_f542e.dir/CMakeCCompilerABI.c.obj +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -v -o CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCCompilerABI.c" +Using built-in specs. +COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: posix +gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/cc1.exe -quiet -v -iprefix C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=i686 -auxbase-strip CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj -version -o C:\Users\danma\AppData\Local\Temp\cc90qH3B.s +GNU C17 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include" +ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/../../../../include" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include +End of search list. +GNU C17 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: e06e4963445adb9452054627e12eacb8 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj C:\Users\danma\AppData\Local\Temp\cc90qH3B.s +GNU assembler version 2.30 (i686-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686' +Linking C executable cmTC_f542e.exe +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_f542e.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_f542e.dir/objects.a +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_f542e.dir/objects.a @CMakeFiles\cmTC_f542e.dir\objects1.rsp +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_f542e.dir/objects.a -Wl,--no-whole-archive -o cmTC_f542e.exe -Wl,--out-implib,libcmTC_f542e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe +COLLECT_LTO_WRAPPER=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: posix +gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f542e.exe' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe -plugin C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\ccd3xusf.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 -m i386pe -Bdynamic -o cmTC_f542e.exe C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0 -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../.. --whole-archive CMakeFiles\cmTC_f542e.dir/objects.a --no-whole-archive --out-implib libcmTC_f542e.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f542e.exe' '-mtune=generic' '-march=i686' +mingw32-make.exe[1]: Leaving directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] + end of search list found + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include] + implicit include dirs: [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_f542e/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_f542e.dir\build.make CMakeFiles/cmTC_f542e.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_f542e.dir/CMakeCCompilerABI.c.obj] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -v -o CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCCompilerABI.c"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686'] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/cc1.exe -quiet -v -iprefix C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=i686 -auxbase-strip CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj -version -o C:\Users\danma\AppData\Local\Temp\cc90qH3B.s] + ignore line: [GNU C17 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: e06e4963445adb9452054627e12eacb8] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686'] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj C:\Users\danma\AppData\Local\Temp\cc90qH3B.s] + ignore line: [GNU assembler version 2.30 (i686-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_f542e.dir\CMakeCCompilerABI.c.obj' '-c' '-mtune=generic' '-march=i686'] + ignore line: [Linking C executable cmTC_f542e.exe] + ignore line: ["C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_f542e.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_f542e.dir/objects.a] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_f542e.dir/objects.a @CMakeFiles\cmTC_f542e.dir\objects1.rsp] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTC_f542e.dir/objects.a -Wl,--no-whole-archive -o cmTC_f542e.exe -Wl,--out-implib,libcmTC_f542e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_f542e.exe' '-mtune=generic' '-march=i686'] + link line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe -plugin C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\ccd3xusf.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 -m i386pe -Bdynamic -o cmTC_f542e.exe C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0 -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../.. --whole-archive CMakeFiles\cmTC_f542e.dir/objects.a --no-whole-archive --out-implib libcmTC_f542e.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o] + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\ccd3xusf.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32] ==> ignore + arg [-m] ==> ignore + arg [i386pe] ==> ignore + arg [-Bdynamic] ==> ignore + arg [-o] ==> ignore + arg [cmTC_f542e.exe] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o] ==> ignore + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTC_f542e.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_f542e.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o] ==> ignore + remove lib [gcc_eh] + remove lib [msvcrt] + remove lib [gcc_eh] + remove lib [msvcrt] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + implicit libs: [mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex] + implicit dirs: [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_cac46/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_cac46.dir\build.make CMakeFiles/cmTC_cac46.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_cac46.dir/testCXXCompiler.cxx.obj +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -o CMakeFiles\cmTC_cac46.dir\testCXXCompiler.cxx.obj -c C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles\CMakeTmp\testCXXCompiler.cxx +Linking CXX executable cmTC_cac46.exe +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_cac46.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_cac46.dir/objects.a +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_cac46.dir/objects.a @CMakeFiles\cmTC_cac46.dir\objects1.rsp +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -Wl,--whole-archive CMakeFiles\cmTC_cac46.dir/objects.a -Wl,--no-whole-archive -o cmTC_cac46.exe -Wl,--out-implib,libcmTC_cac46.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\cmTC_cac46.dir\linklibs.rsp +mingw32-make.exe[1]: Leaving directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_11ac7/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_11ac7.dir\build.make CMakeFiles/cmTC_11ac7.dir/build +mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_11ac7.dir/CMakeCXXCompilerABI.cpp.obj +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -v -o CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCXXCompilerABI.cpp" +Using built-in specs. +COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: posix +gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/cc1plus.exe -quiet -v -iprefix C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=i686 -auxbase-strip CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj -version -o C:\Users\danma\AppData\Local\Temp\ccAtGqax.s +GNU C++14 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include" +ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/../../../../include" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed" +ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++ + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32 + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include +End of search list. +GNU C++14 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 363c147591782b306ba23bb274599884 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\danma\AppData\Local\Temp\ccAtGqax.s +GNU assembler version 2.30 (i686-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686' +Linking CXX executable cmTC_11ac7.exe +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_11ac7.dir\link.txt --verbose=1 +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_11ac7.dir/objects.a +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_11ac7.dir/objects.a @CMakeFiles\cmTC_11ac7.dir\objects1.rsp +C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -v -Wl,--whole-archive CMakeFiles\cmTC_11ac7.dir/objects.a -Wl,--no-whole-archive -o cmTC_11ac7.exe -Wl,--out-implib,libcmTC_11ac7.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE +COLLECT_LTO_WRAPPER=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: posix +gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/;C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_11ac7.exe' '-shared-libgcc' '-mtune=generic' '-march=i686' + C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe -plugin C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\cc3vl5CJ.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 -m i386pe -Bdynamic -u ___register_frame_info -u ___deregister_frame_info -o cmTC_11ac7.exe C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0 -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../.. --whole-archive CMakeFiles\cmTC_11ac7.dir/objects.a --no-whole-archive --out-implib libcmTC_11ac7.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_11ac7.exe' '-shared-libgcc' '-mtune=generic' '-march=i686' +mingw32-make.exe[1]: Leaving directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + add: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] + end of search list found + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + collapse include dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include] + implicit include dirs: [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include-fixed;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe cmTC_11ac7/fast && C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/mingw32-make.exe -f CMakeFiles\cmTC_11ac7.dir\build.make CMakeFiles/cmTC_11ac7.dir/build] + ignore line: [mingw32-make.exe[1]: Entering directory 'C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_11ac7.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -v -o CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCXXCompilerABI.cpp"] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686'] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/cc1plus.exe -quiet -v -iprefix C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/ -D_REENTRANT C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\share\cmake-3.15\Modules\CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=i686 -auxbase-strip CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj -version -o C:\Users\danma\AppData\Local\Temp\ccAtGqax.s] + ignore line: [GNU C++14 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32C:/msys64/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/lib/gcc/../../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/i686-w64-mingw32] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include/c++/backward] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/include-fixed] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) version 8.1.0 (i686-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 363c147591782b306ba23bb274599884] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686'] + ignore line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/as.exe -v -o CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj C:\Users\danma\AppData\Local\Temp\ccAtGqax.s] + ignore line: [GNU assembler version 2.30 (i686-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles\cmTC_11ac7.dir\CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=generic' '-march=i686'] + ignore line: [Linking CXX executable cmTC_11ac7.exe] + ignore line: ["C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTC_11ac7.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f CMakeFiles\cmTC_11ac7.dir/objects.a] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\ar.exe cr CMakeFiles\cmTC_11ac7.dir/objects.a @CMakeFiles\cmTC_11ac7.dir\objects1.rsp] + ignore line: [C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE -v -Wl,--whole-archive CMakeFiles\cmTC_11ac7.dir/objects.a -Wl,--no-whole-archive -o cmTC_11ac7.exe -Wl,--out-implib,libcmTC_11ac7.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\PROGRA~2\MINGW-~1\I686-8~1.0-P\mingw32\bin\G__~1.EXE] + ignore line: [COLLECT_LTO_WRAPPER=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 --enable-shared --enable-static --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/i686-w64-mingw32-static --with-pkgversion='i686-posix-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/include -I/c/mingw810/prerequisites/i686-zlib-static/include -I/c/mingw810/prerequisites/i686-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32/opt/lib -L/c/mingw810/prerequisites/i686-zlib-static/lib -L/c/mingw810/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (i686-posix-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_11ac7.exe' '-shared-libgcc' '-mtune=generic' '-march=i686'] + link line: [ C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe -plugin C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\cc3vl5CJ.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32 -m i386pe -Bdynamic -u ___register_frame_info -u ___deregister_frame_info -o cmTC_11ac7.exe C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0 -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib -LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../.. --whole-archive CMakeFiles\cmTC_11ac7.dir/objects.a --no-whole-archive --out-implib libcmTC_11ac7.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o] + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../libexec/gcc/i686-w64-mingw32/8.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\danma\AppData\Local\Temp\cc3vl5CJ.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw810/i686-810-posix-dwarf-rt_v6-rev0/mingw32] ==> ignore + arg [-m] ==> ignore + arg [i386pe] ==> ignore + arg [-Bdynamic] ==> ignore + arg [-u] ==> ignore + arg [___register_frame_info] ==> ignore + arg [-u] ==> ignore + arg [___deregister_frame_info] ==> ignore + arg [-o] ==> ignore + arg [cmTC_11ac7.exe] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib/crt2.o] ==> ignore + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtbegin.o] ==> ignore + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] + arg [-LC:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] ==> dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTC_11ac7.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_11ac7.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/crtend.o] ==> ignore + remove lib [msvcrt] + remove lib [msvcrt] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib/../lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/lib] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib] + collapse library dir [C:/PROGRA~2/MINGW-~1/I686-8~1.0-P/mingw32/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../..] ==> [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex] + implicit dirs: [C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc/i686-w64-mingw32/8.1.0;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib/gcc;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/i686-w64-mingw32/lib;C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/lib] + implicit fwks: [] + + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..166c556f5 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile.cmake @@ -0,0 +1,132 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "MinGW Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCCompiler.cmake.in" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCCompilerABI.c" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCInformation.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCXXCompiler.cmake.in" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCXXInformation.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeCompilerIdDetection.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCXXCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCompileFeatures.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCompilerABI.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineCompilerId.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineRCCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeDetermineSystem.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeFindBinUtils.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeFindCodeBlocks.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeGenericSystem.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeMinGWFindMake.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeParseImplicitIncludeInfo.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeParseImplicitLinkInfo.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeRCCompiler.cmake.in" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeRCInformation.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeSystem.cmake.in" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeTestCCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeTestCXXCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeTestCompilerCommon.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/CMakeTestRCCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Borland-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Cray-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GHS-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU-C.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU-CXX.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU-FindBinUtils.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/GNU.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/IAR-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Intel-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/PGI-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/SCO-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/TI-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Internal/FeatureTesting.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-Determine-CXX.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-GNU-C-ABI.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-GNU-C.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-GNU-CXX.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-GNU.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows-windres.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/Windows.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/Platform/WindowsPaths.cmake" + "C:/Program Files/JetBrains/CLion 2019.2.3/bin/cmake/win/share/cmake-3.15/Modules/ProcessorCount.cmake" + "../CMakeLists.txt" + "CMakeFiles/3.15.3/CMakeCCompiler.cmake" + "CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.15.3/CMakeRCCompiler.cmake" + "CMakeFiles/3.15.3/CMakeSystem.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.15.3/CMakeSystem.cmake" + "CMakeFiles/3.15.3/CMakeCCompiler.cmake" + "CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" + "CMakeFiles/3.15.3/CMakeRCCompiler.cmake" + "CMakeFiles/3.15.3/CMakeCCompiler.cmake" + "CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/Battle_For_Honor.dir/DependInfo.cmake" + ) diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile2 b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile2 new file mode 100644 index 000000000..713b9d962 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/Makefile2 @@ -0,0 +1,105 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\Users\danma\Desktop\Battle_For_Honor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/Battle_For_Honor.dir/all + +.PHONY : all + +# The main recursive "clean" target. +clean: CMakeFiles/Battle_For_Honor.dir/clean + +.PHONY : clean + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Target rules for target CMakeFiles/Battle_For_Honor.dir + +# All Build rule for target. +CMakeFiles/Battle_For_Honor.dir/all: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/depend + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 "Built target Battle_For_Honor" +.PHONY : CMakeFiles/Battle_For_Honor.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/Battle_For_Honor.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles 19 + $(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/Battle_For_Honor.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles 0 +.PHONY : CMakeFiles/Battle_For_Honor.dir/rule + +# Convenience name for target. +Battle_For_Honor: CMakeFiles/Battle_For_Honor.dir/rule + +.PHONY : Battle_For_Honor + +# clean rule for target. +CMakeFiles/Battle_For_Honor.dir/clean: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/clean +.PHONY : CMakeFiles/Battle_For_Honor.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..eb9e98132 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/edit_cache.dir +C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/Battle_For_Honor.dir +C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/CMakeFiles/rebuild_cache.dir diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-environment.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-environment.txt new file mode 100644 index 000000000..d3e756704 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-environment.txt @@ -0,0 +1,4 @@ +ToolSet: w64 6.0 (local)@C:\Program Files (x86)\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32 +Options: msvc.arch=amd64, msvc.platform=store + +Options: \ No newline at end of file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-log.txt b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-log.txt new file mode 100644 index 000000000..f45b4e040 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/clion-log.txt @@ -0,0 +1,18 @@ +"C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - MinGW Makefiles" C:\Users\danma\Desktop\Battle_For_Honor +-- The C compiler identification is GNU 8.1.0 +-- The CXX compiler identification is GNU 8.1.0 +-- Check for working C compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe +-- Check for working C compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/gcc.exe -- works +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting C compile features +-- Detecting C compile features - done +-- Check for working CXX compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe +-- Check for working CXX compiler: C:/Program Files (x86)/mingw-w64/i686-8.1.0-posix-dwarf-rt_v6-rev0/mingw32/bin/g++.exe -- works +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Configuring done +-- Generating done +-- Build files have been written to: C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/cmake.check_cache b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..56c437b9b --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/progress.marks b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/progress.marks new file mode 100644 index 000000000..443ecf9d3 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/CMakeFiles/progress.marks @@ -0,0 +1 @@ +19 diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Makefile b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Makefile new file mode 100644 index 000000000..9f50e88e0 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/Makefile @@ -0,0 +1,687 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 3.15 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\Users\danma\Desktop\Battle_For_Honor + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -E echo "No interactive CMake dialog available." +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + "C:\Program Files\JetBrains\CLion 2019.2.3\bin\cmake\win\bin\cmake.exe" -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles\progress.marks + $(MAKE) -f CMakeFiles\Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\danma\Desktop\Battle_For_Honor\cmake-build-debug\CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles\Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles\Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles\Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named Battle_For_Honor + +# Build rule for target. +Battle_For_Honor: cmake_check_build_system + $(MAKE) -f CMakeFiles\Makefile2 Battle_For_Honor +.PHONY : Battle_For_Honor + +# fast build rule for target. +Battle_For_Honor/fast: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/build +.PHONY : Battle_For_Honor/fast + +Battle_Field/Cell.obj: Battle_Field/Cell.cpp.obj + +.PHONY : Battle_Field/Cell.obj + +# target to build an object file +Battle_Field/Cell.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.obj +.PHONY : Battle_Field/Cell.cpp.obj + +Battle_Field/Cell.i: Battle_Field/Cell.cpp.i + +.PHONY : Battle_Field/Cell.i + +# target to preprocess a source file +Battle_Field/Cell.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.i +.PHONY : Battle_Field/Cell.cpp.i + +Battle_Field/Cell.s: Battle_Field/Cell.cpp.s + +.PHONY : Battle_Field/Cell.s + +# target to generate assembly for a file +Battle_Field/Cell.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Cell.cpp.s +.PHONY : Battle_Field/Cell.cpp.s + +Battle_Field/Field.obj: Battle_Field/Field.cpp.obj + +.PHONY : Battle_Field/Field.obj + +# target to build an object file +Battle_Field/Field.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.obj +.PHONY : Battle_Field/Field.cpp.obj + +Battle_Field/Field.i: Battle_Field/Field.cpp.i + +.PHONY : Battle_Field/Field.i + +# target to preprocess a source file +Battle_Field/Field.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.i +.PHONY : Battle_Field/Field.cpp.i + +Battle_Field/Field.s: Battle_Field/Field.cpp.s + +.PHONY : Battle_Field/Field.s + +# target to generate assembly for a file +Battle_Field/Field.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/Field.cpp.s +.PHONY : Battle_Field/Field.cpp.s + +Battle_Field/FieldIterator.obj: Battle_Field/FieldIterator.cpp.obj + +.PHONY : Battle_Field/FieldIterator.obj + +# target to build an object file +Battle_Field/FieldIterator.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.obj +.PHONY : Battle_Field/FieldIterator.cpp.obj + +Battle_Field/FieldIterator.i: Battle_Field/FieldIterator.cpp.i + +.PHONY : Battle_Field/FieldIterator.i + +# target to preprocess a source file +Battle_Field/FieldIterator.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.i +.PHONY : Battle_Field/FieldIterator.cpp.i + +Battle_Field/FieldIterator.s: Battle_Field/FieldIterator.cpp.s + +.PHONY : Battle_Field/FieldIterator.s + +# target to generate assembly for a file +Battle_Field/FieldIterator.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Battle_Field/FieldIterator.cpp.s +.PHONY : Battle_Field/FieldIterator.cpp.s + +Main_Base/Base.obj: Main_Base/Base.cpp.obj + +.PHONY : Main_Base/Base.obj + +# target to build an object file +Main_Base/Base.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.obj +.PHONY : Main_Base/Base.cpp.obj + +Main_Base/Base.i: Main_Base/Base.cpp.i + +.PHONY : Main_Base/Base.i + +# target to preprocess a source file +Main_Base/Base.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.i +.PHONY : Main_Base/Base.cpp.i + +Main_Base/Base.s: Main_Base/Base.cpp.s + +.PHONY : Main_Base/Base.s + +# target to generate assembly for a file +Main_Base/Base.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Main_Base/Base.cpp.s +.PHONY : Main_Base/Base.cpp.s + +Units/Archer.obj: Units/Archer.cpp.obj + +.PHONY : Units/Archer.obj + +# target to build an object file +Units/Archer.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.obj +.PHONY : Units/Archer.cpp.obj + +Units/Archer.i: Units/Archer.cpp.i + +.PHONY : Units/Archer.i + +# target to preprocess a source file +Units/Archer.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.i +.PHONY : Units/Archer.cpp.i + +Units/Archer.s: Units/Archer.cpp.s + +.PHONY : Units/Archer.s + +# target to generate assembly for a file +Units/Archer.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Archer.cpp.s +.PHONY : Units/Archer.cpp.s + +Units/Armour.obj: Units/Armour.cpp.obj + +.PHONY : Units/Armour.obj + +# target to build an object file +Units/Armour.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.obj +.PHONY : Units/Armour.cpp.obj + +Units/Armour.i: Units/Armour.cpp.i + +.PHONY : Units/Armour.i + +# target to preprocess a source file +Units/Armour.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.i +.PHONY : Units/Armour.cpp.i + +Units/Armour.s: Units/Armour.cpp.s + +.PHONY : Units/Armour.s + +# target to generate assembly for a file +Units/Armour.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Armour.cpp.s +.PHONY : Units/Armour.cpp.s + +Units/Attributes.obj: Units/Attributes.cpp.obj + +.PHONY : Units/Attributes.obj + +# target to build an object file +Units/Attributes.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.obj +.PHONY : Units/Attributes.cpp.obj + +Units/Attributes.i: Units/Attributes.cpp.i + +.PHONY : Units/Attributes.i + +# target to preprocess a source file +Units/Attributes.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.i +.PHONY : Units/Attributes.cpp.i + +Units/Attributes.s: Units/Attributes.cpp.s + +.PHONY : Units/Attributes.s + +# target to generate assembly for a file +Units/Attributes.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Attributes.cpp.s +.PHONY : Units/Attributes.cpp.s + +Units/Crossbows.obj: Units/Crossbows.cpp.obj + +.PHONY : Units/Crossbows.obj + +# target to build an object file +Units/Crossbows.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.obj +.PHONY : Units/Crossbows.cpp.obj + +Units/Crossbows.i: Units/Crossbows.cpp.i + +.PHONY : Units/Crossbows.i + +# target to preprocess a source file +Units/Crossbows.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.i +.PHONY : Units/Crossbows.cpp.i + +Units/Crossbows.s: Units/Crossbows.cpp.s + +.PHONY : Units/Crossbows.s + +# target to generate assembly for a file +Units/Crossbows.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Crossbows.cpp.s +.PHONY : Units/Crossbows.cpp.s + +Units/Damage.obj: Units/Damage.cpp.obj + +.PHONY : Units/Damage.obj + +# target to build an object file +Units/Damage.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.obj +.PHONY : Units/Damage.cpp.obj + +Units/Damage.i: Units/Damage.cpp.i + +.PHONY : Units/Damage.i + +# target to preprocess a source file +Units/Damage.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.i +.PHONY : Units/Damage.cpp.i + +Units/Damage.s: Units/Damage.cpp.s + +.PHONY : Units/Damage.s + +# target to generate assembly for a file +Units/Damage.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Damage.cpp.s +.PHONY : Units/Damage.cpp.s + +Units/Footman.obj: Units/Footman.cpp.obj + +.PHONY : Units/Footman.obj + +# target to build an object file +Units/Footman.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.obj +.PHONY : Units/Footman.cpp.obj + +Units/Footman.i: Units/Footman.cpp.i + +.PHONY : Units/Footman.i + +# target to preprocess a source file +Units/Footman.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.i +.PHONY : Units/Footman.cpp.i + +Units/Footman.s: Units/Footman.cpp.s + +.PHONY : Units/Footman.s + +# target to generate assembly for a file +Units/Footman.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Footman.cpp.s +.PHONY : Units/Footman.cpp.s + +Units/HorseArcher.obj: Units/HorseArcher.cpp.obj + +.PHONY : Units/HorseArcher.obj + +# target to build an object file +Units/HorseArcher.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.obj +.PHONY : Units/HorseArcher.cpp.obj + +Units/HorseArcher.i: Units/HorseArcher.cpp.i + +.PHONY : Units/HorseArcher.i + +# target to preprocess a source file +Units/HorseArcher.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.i +.PHONY : Units/HorseArcher.cpp.i + +Units/HorseArcher.s: Units/HorseArcher.cpp.s + +.PHONY : Units/HorseArcher.s + +# target to generate assembly for a file +Units/HorseArcher.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/HorseArcher.cpp.s +.PHONY : Units/HorseArcher.cpp.s + +Units/Horseman.obj: Units/Horseman.cpp.obj + +.PHONY : Units/Horseman.obj + +# target to build an object file +Units/Horseman.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.obj +.PHONY : Units/Horseman.cpp.obj + +Units/Horseman.i: Units/Horseman.cpp.i + +.PHONY : Units/Horseman.i + +# target to preprocess a source file +Units/Horseman.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.i +.PHONY : Units/Horseman.cpp.i + +Units/Horseman.s: Units/Horseman.cpp.s + +.PHONY : Units/Horseman.s + +# target to generate assembly for a file +Units/Horseman.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Horseman.cpp.s +.PHONY : Units/Horseman.cpp.s + +Units/LongBowman.obj: Units/LongBowman.cpp.obj + +.PHONY : Units/LongBowman.obj + +# target to build an object file +Units/LongBowman.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.obj +.PHONY : Units/LongBowman.cpp.obj + +Units/LongBowman.i: Units/LongBowman.cpp.i + +.PHONY : Units/LongBowman.i + +# target to preprocess a source file +Units/LongBowman.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.i +.PHONY : Units/LongBowman.cpp.i + +Units/LongBowman.s: Units/LongBowman.cpp.s + +.PHONY : Units/LongBowman.s + +# target to generate assembly for a file +Units/LongBowman.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/LongBowman.cpp.s +.PHONY : Units/LongBowman.cpp.s + +Units/SpearHorse.obj: Units/SpearHorse.cpp.obj + +.PHONY : Units/SpearHorse.obj + +# target to build an object file +Units/SpearHorse.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.obj +.PHONY : Units/SpearHorse.cpp.obj + +Units/SpearHorse.i: Units/SpearHorse.cpp.i + +.PHONY : Units/SpearHorse.i + +# target to preprocess a source file +Units/SpearHorse.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.i +.PHONY : Units/SpearHorse.cpp.i + +Units/SpearHorse.s: Units/SpearHorse.cpp.s + +.PHONY : Units/SpearHorse.s + +# target to generate assembly for a file +Units/SpearHorse.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/SpearHorse.cpp.s +.PHONY : Units/SpearHorse.cpp.s + +Units/Spearman.obj: Units/Spearman.cpp.obj + +.PHONY : Units/Spearman.obj + +# target to build an object file +Units/Spearman.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.obj +.PHONY : Units/Spearman.cpp.obj + +Units/Spearman.i: Units/Spearman.cpp.i + +.PHONY : Units/Spearman.i + +# target to preprocess a source file +Units/Spearman.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.i +.PHONY : Units/Spearman.cpp.i + +Units/Spearman.s: Units/Spearman.cpp.s + +.PHONY : Units/Spearman.s + +# target to generate assembly for a file +Units/Spearman.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Spearman.cpp.s +.PHONY : Units/Spearman.cpp.s + +Units/Swordsman.obj: Units/Swordsman.cpp.obj + +.PHONY : Units/Swordsman.obj + +# target to build an object file +Units/Swordsman.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.obj +.PHONY : Units/Swordsman.cpp.obj + +Units/Swordsman.i: Units/Swordsman.cpp.i + +.PHONY : Units/Swordsman.i + +# target to preprocess a source file +Units/Swordsman.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.i +.PHONY : Units/Swordsman.cpp.i + +Units/Swordsman.s: Units/Swordsman.cpp.s + +.PHONY : Units/Swordsman.s + +# target to generate assembly for a file +Units/Swordsman.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Swordsman.cpp.s +.PHONY : Units/Swordsman.cpp.s + +Units/Unit.obj: Units/Unit.cpp.obj + +.PHONY : Units/Unit.obj + +# target to build an object file +Units/Unit.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.obj +.PHONY : Units/Unit.cpp.obj + +Units/Unit.i: Units/Unit.cpp.i + +.PHONY : Units/Unit.i + +# target to preprocess a source file +Units/Unit.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.i +.PHONY : Units/Unit.cpp.i + +Units/Unit.s: Units/Unit.cpp.s + +.PHONY : Units/Unit.s + +# target to generate assembly for a file +Units/Unit.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/Units/Unit.cpp.s +.PHONY : Units/Unit.cpp.s + +main.obj: main.cpp.obj + +.PHONY : main.obj + +# target to build an object file +main.cpp.obj: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/main.cpp.obj +.PHONY : main.cpp.obj + +main.i: main.cpp.i + +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s + +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) -f CMakeFiles\Battle_For_Honor.dir\build.make CMakeFiles/Battle_For_Honor.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo The following are some of the valid targets for this Makefile: + @echo ... all (the default if no target is provided) + @echo ... clean + @echo ... depend + @echo ... edit_cache + @echo ... Battle_For_Honor + @echo ... rebuild_cache + @echo ... Battle_Field/Cell.obj + @echo ... Battle_Field/Cell.i + @echo ... Battle_Field/Cell.s + @echo ... Battle_Field/Field.obj + @echo ... Battle_Field/Field.i + @echo ... Battle_Field/Field.s + @echo ... Battle_Field/FieldIterator.obj + @echo ... Battle_Field/FieldIterator.i + @echo ... Battle_Field/FieldIterator.s + @echo ... Main_Base/Base.obj + @echo ... Main_Base/Base.i + @echo ... Main_Base/Base.s + @echo ... Units/Archer.obj + @echo ... Units/Archer.i + @echo ... Units/Archer.s + @echo ... Units/Armour.obj + @echo ... Units/Armour.i + @echo ... Units/Armour.s + @echo ... Units/Attributes.obj + @echo ... Units/Attributes.i + @echo ... Units/Attributes.s + @echo ... Units/Crossbows.obj + @echo ... Units/Crossbows.i + @echo ... Units/Crossbows.s + @echo ... Units/Damage.obj + @echo ... Units/Damage.i + @echo ... Units/Damage.s + @echo ... Units/Footman.obj + @echo ... Units/Footman.i + @echo ... Units/Footman.s + @echo ... Units/HorseArcher.obj + @echo ... Units/HorseArcher.i + @echo ... Units/HorseArcher.s + @echo ... Units/Horseman.obj + @echo ... Units/Horseman.i + @echo ... Units/Horseman.s + @echo ... Units/LongBowman.obj + @echo ... Units/LongBowman.i + @echo ... Units/LongBowman.s + @echo ... Units/SpearHorse.obj + @echo ... Units/SpearHorse.i + @echo ... Units/SpearHorse.s + @echo ... Units/Spearman.obj + @echo ... Units/Spearman.i + @echo ... Units/Spearman.s + @echo ... Units/Swordsman.obj + @echo ... Units/Swordsman.i + @echo ... Units/Swordsman.s + @echo ... Units/Unit.obj + @echo ... Units/Unit.i + @echo ... Units/Unit.s + @echo ... main.obj + @echo ... main.i + @echo ... main.s +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/cmake_install.cmake b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/cmake_install.cmake new file mode 100644 index 000000000..86540b7b9 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/cmake-build-debug/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/danma/Desktop/Battle_For_Honor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/Battle_For_Honor") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/danma/Desktop/Battle_For_Honor/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/main.cpp b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/main.cpp new file mode 100644 index 000000000..bc872a072 --- /dev/null +++ b/8304/Masalykin_Daniil/Lab1/Battle_For_Honor/main.cpp @@ -0,0 +1,22 @@ +#include +#include "Units/Unit.h" +#include "Battle Field/Field.h" +#include "Units/Swordsman.h" +#include "Units/Spearman.h" + + +int main() +{ + Field field; + Unit spear = Spearman(5,5); + field.print_field(); + field.insert_Unit(&spear); + field.print_field(); + field.move_unit(&spear, 1, 1); + Unit sword = Swordsman(5,5); + field.insert_Unit(&sword); + field.print_field(); + field.remove_Unit(&sword); + field.print_field(); + +} diff --git a/8304/Masalykin_Daniil/Lab1/OOP_LR1.doc b/8304/Masalykin_Daniil/Lab1/OOP_LR1.doc new file mode 100644 index 000000000..4231bf1ea Binary files /dev/null and b/8304/Masalykin_Daniil/Lab1/OOP_LR1.doc differ diff --git a/8304/Masalykin_Daniil/OOP.pdf b/8304/Masalykin_Daniil/OOP.pdf new file mode 100644 index 000000000..cd5a09adf Binary files /dev/null and b/8304/Masalykin_Daniil/OOP.pdf differ