From 70bf07fe4420ccbed43dbdd35ec81d37acf40fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Bergstr=C3=B6m?= <davbe125@student.liu.se> Date: Tue, 11 Dec 2018 16:56:21 +0100 Subject: [PATCH] Fix code style --- python-api-src/lib_unit.cpp | 2 +- python-api-src/lib_unittype.cpp | 4 ++-- src/Unit.cpp | 8 ++++---- src/Unit.h | 2 +- src/UnitType.h | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/python-api-src/lib_unit.cpp b/python-api-src/lib_unit.cpp index 5102648..26ea8da 100644 --- a/python-api-src/lib_unit.cpp +++ b/python-api-src/lib_unit.cpp @@ -28,7 +28,7 @@ void define_unit(py::module & m) .def_property_readonly("is_blip", &Unit::isBlip) .def_property_readonly("target", &Unit::getTarget) .def_property_readonly("has_target", &Unit::hasTarget) - .def_property_readonly("max_hit_points", &Unit::getMaxHitPoints) + .def_property_readonly("max_hit_points", &Unit::getMaxHitPoints) .def("stop", &Unit::stop) .def("attack_unit", &Unit::attackUnit) .def("attack_move", &Unit::attackMove) diff --git a/python-api-src/lib_unittype.cpp b/python-api-src/lib_unittype.cpp index 35313de..0946c51 100644 --- a/python-api-src/lib_unittype.cpp +++ b/python-api-src/lib_unittype.cpp @@ -10,7 +10,7 @@ void define_unittype(py::module & m) .def_property_readonly("unit_typeid", [](UnitType & unit_type) { return static_cast<sc2::UNIT_TYPEID>(unit_type.getAPIUnitType()); }) .def_property_readonly("name", &UnitType::getName) .def_property_readonly("race", &UnitType::getRace) - .def_property_readonly("movement_speed", &UnitType::getMovementSpeed) + .def_property_readonly("movement_speed", &UnitType::getMovementSpeed) .def_property_readonly("is_valid", &UnitType::isValid) .def_property_readonly("is_building", &UnitType::isBuilding) .def_property_readonly("is_combat_unit", &UnitType::isCombatUnit, "The unit is not any of the following: worker, supply provider, building, larva, egg") @@ -44,4 +44,4 @@ void define_unittype(py::module & m) // Not implemented in CommandCenter //.def("whatBuilds", &UnitType::whatBuilds); -} \ No newline at end of file +} diff --git a/src/Unit.cpp b/src/Unit.cpp index 15277c8..beccfff 100644 --- a/src/Unit.cpp +++ b/src/Unit.cpp @@ -303,11 +303,11 @@ Unit Unit::getTarget() const BOT_ASSERT(isValid(), "Unit is not valid"); BOT_ASSERT(hasTarget(), "Unit has no target"); - //if unit has order, check tag of target of first order + // if unit has order, check tag of target of first order if(getUnitPtr()->orders.size() > 0){ - //t_id is set to the unit tag of the target + // t_id is set to the unit tag of the target CCUnitID t_id = getUnitPtr()->orders[0].target_unit_tag; - //IDAbot finds the unit with this tag + // IDABot finds the unit with this tag return m_bot->GetUnit(t_id); } @@ -344,4 +344,4 @@ CCHealth Unit::getMaxHitPoints() const { BOT_ASSERT(isValid(), "Unit is not valid"); return m_unit->health_max; -} \ No newline at end of file +} diff --git a/src/Unit.h b/src/Unit.h index f9c51a7..a7c8305 100644 --- a/src/Unit.h +++ b/src/Unit.h @@ -50,7 +50,7 @@ public: bool isBlip() const; bool hasTarget() const; Unit getTarget() const; - CCHealth getMaxHitPoints() const; + CCHealth getMaxHitPoints() const; void stop () const; void attackUnit (const Unit & target) const; diff --git a/src/UnitType.h b/src/UnitType.h index 8f9d975..6c8d043 100644 --- a/src/UnitType.h +++ b/src/UnitType.h @@ -23,7 +23,7 @@ public: std::string getName() const; CCRace getRace() const; - int getMovementSpeed() const; + int getMovementSpeed() const; bool isValid() const; bool isBuilding() const; -- GitLab