You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

241 lines
11 KiB

  1. #include "PrismFormulaPrinter.h"
  2. #include <map>
  3. #include <string>
  4. #include <algorithm>
  5. std::string oneOffToString(const int &offset) {
  6. return offset != 0 ? ( offset == 1 ? "+1" : "-1" ) : "";
  7. }
  8. std::string vectorToDisjunction(const std::vector<std::string> &formulae) {
  9. bool first = true;
  10. std::string disjunction = "";
  11. for(const auto &formula : formulae) {
  12. if(first) first = false;
  13. else disjunction += " | ";
  14. disjunction += formula;
  15. }
  16. return disjunction;
  17. }
  18. std::string cellToConjunction(const AgentName &agentName, const cell &c) {
  19. return "col" + agentName + "=" + std::to_string(c.column) + "&row" + agentName + "=" + std::to_string(c.row);
  20. }
  21. std::string cellToConjunctionWithOffset(const AgentName &agentName, const cell &c, const std::string &xOffset, const std::string &yOffset){
  22. return "col" + agentName + xOffset + "=" + std::to_string(c.column) + "&row" + agentName + yOffset + "=" + std::to_string(c.row);
  23. }
  24. std::string coordinatesToConjunction(const AgentName &agentName, const coordinates &c, const ViewDirection viewDirection) {
  25. return "col" + agentName + "=" + std::to_string(c.first) + "&row" + agentName + "=" + std::to_string(c.second) + "&view" + agentName + "=" + std::to_string(viewDirection);
  26. }
  27. std::string objectPositionToConjunction(const AgentName &agentName, const std::string &identifier, const std::pair<int, int> &relativePosition) {
  28. std::string xOffset = oneOffToString(relativePosition.first);
  29. std::string yOffset = oneOffToString(relativePosition.second);
  30. return "col" + agentName + xOffset + "=col" + identifier + "&row" + agentName + yOffset + "=row" + identifier;
  31. }
  32. std::string objectPositionToConjunction(const AgentName &agentName, const std::string &identifier, const std::pair<int, int> &relativePosition, const ViewDirection viewDirection) {
  33. std::string xOffset = oneOffToString(relativePosition.first);
  34. std::string yOffset = oneOffToString(relativePosition.second);
  35. return "col" + agentName + xOffset + "=col" + identifier + "&row" + agentName + yOffset + "=row" + identifier + "&view" + agentName + "=" + std::to_string(viewDirection);
  36. }
  37. std::map<ViewDirection, coordinates> getAdjacentCells(const cell &c) {
  38. return {{1, c.getNorth()}, {2, c.getEast()}, {3, c.getSouth()}, {0, c.getWest()}};
  39. }
  40. std::map<ViewDirection, std::pair<int, int>> getRelativeAdjacentCells() {
  41. return { {1, {0,+1}}, {2, {-1,0}}, {3, {0,-1}}, {0, {+1,0}} };
  42. }
  43. std::map<std::string, std::pair<int, int>> getRelativeSurroundingCells() {
  44. return { {"NorthWest", {-1,-1}}, {"North", { 0,-1}}, {"NorthEast", {+1,-1}},
  45. {"West", {-1, 0}}, {"East", {+1, 0}},
  46. {"SouthWest", {-1,+1}}, {"South", { 0,+1}}, {"SouthEast", {+1,+1}} };
  47. }
  48. namespace prism {
  49. PrismFormulaPrinter::PrismFormulaPrinter(std::ostream &os, const std::map<std::string, cells> &restrictions, const cells &walls, const cells &lockedDoors, const cells &unlockedDoors, const cells &keys, const std::map<std::string, cells> &slipperyTiles, const cells &lava, const cells &goals, const AgentNameAndPositionMap &agentNameAndPositionMap, const bool faulty)
  50. : os(os), restrictions(restrictions), walls(walls), lockedDoors(lockedDoors), unlockedDoors(unlockedDoors), keys(keys), slipperyTiles(slipperyTiles), lava(lava), goals(goals), agentNameAndPositionMap(agentNameAndPositionMap), faulty(faulty)
  51. { }
  52. void PrismFormulaPrinter::print(const AgentName &agentName) {
  53. conditionalMovementRestrictions.clear();
  54. for(const auto& [direction, cells] : restrictions) {
  55. printRestrictionFormula(agentName, direction, cells);
  56. }
  57. if(slipperyBehaviour()) {
  58. for(const auto& [direction, cells] : slipperyTiles) {
  59. printIsOnFormula(agentName, "Slippery", cells, direction);
  60. }
  61. std::vector<std::string> allSlipperyDirections;
  62. for(const auto &[slipperyType, _] : slipperyTiles) {
  63. allSlipperyDirections.push_back(agentName + "IsOnSlippery" + slipperyType);
  64. }
  65. os << buildFormula(agentName + "IsOnSlippery", vectorToDisjunction(allSlipperyDirections));
  66. for(const auto& [direction, relativePosition] : getRelativeSurroundingCells()) {
  67. printSlipRestrictionFormula(agentName, direction);
  68. }
  69. } else {
  70. os << buildFormula(agentName + "IsOnSlippery", "false");
  71. }
  72. if(!lava.empty()) printIsOnFormula(agentName, "Lava", lava);
  73. if(!goals.empty()) printIsOnFormula(agentName, "Goal", goals);
  74. for(const auto& key : keys) {
  75. std::string identifier = capitalize(key.getColor()) + key.getType();
  76. printRelativeIsInFrontOfFormulaWithCondition(agentName, identifier, "!" + identifier + "PickedUp");
  77. portableObjects.push_back(agentName + "Carrying" + identifier);
  78. }
  79. for(const auto& door : unlockedDoors) {
  80. std::string identifier = capitalize(door.getColor()) + door.getType();
  81. printRestrictionFormulaWithCondition(agentName, identifier, getAdjacentCells(door), "!" + identifier + "Open");
  82. printIsNextToFormula(agentName, identifier, getAdjacentCells(door));
  83. }
  84. for(const auto& door : lockedDoors) {
  85. std::string identifier = capitalize(door.getColor()) + door.getType();
  86. printRestrictionFormulaWithCondition(agentName, identifier, getAdjacentCells(door), "!" + identifier + "Open");
  87. printIsNextToFormula(agentName, identifier, getAdjacentCells(door));
  88. }
  89. if(conditionalMovementRestrictions.size() > 0) {
  90. os << buildFormula(agentName + "CannotMoveConditionally", vectorToDisjunction(conditionalMovementRestrictions));
  91. os << buildFormula(agentName + "IsCarrying", vectorToDisjunction(portableObjects));
  92. }
  93. }
  94. void PrismFormulaPrinter::printRestrictionFormula(const AgentName &agentName, const std::string &direction, const cells &grid_cells) {
  95. os << buildFormula(agentName + "CannotMove" + direction + "Wall", buildDisjunction(agentName, grid_cells));
  96. }
  97. void PrismFormulaPrinter::printIsOnFormula(const AgentName &agentName, const std::string &type, const cells &grid_cells, const std::string &direction) {
  98. os << buildFormula(agentName + "IsOn" + type + direction, buildDisjunction(agentName, grid_cells));
  99. }
  100. void PrismFormulaPrinter::printIsNextToFormula(const AgentName &agentName, const std::string &type, const std::map<ViewDirection, coordinates> &coordinates) {
  101. os << buildFormula(agentName + "IsNextTo" + type, buildDisjunction(agentName, coordinates));
  102. }
  103. void PrismFormulaPrinter::printRestrictionFormulaWithCondition(const AgentName &agentName, const std::string &reason, const std::map<ViewDirection, coordinates> &coordinates, const std::string &condition) {
  104. os << buildFormula(agentName + "CannotMove" + reason, "(" + buildDisjunction(agentName, coordinates) + ") & " + condition);
  105. conditionalMovementRestrictions.push_back(agentName + "CannotMove" + reason);
  106. }
  107. void PrismFormulaPrinter::printRelativeIsInFrontOfFormulaWithCondition(const AgentName &agentName, const std::string &reason, const std::string &condition) {
  108. os << buildFormula(agentName + "IsInFrontOf" + reason, "(" + buildDisjunction(agentName, reason) + ") & " + condition);
  109. }
  110. void PrismFormulaPrinter::printSlipRestrictionFormula(const AgentName &agentName, const std::string &direction) {
  111. std::pair<int, int> slipCell = getRelativeSurroundingCells().at(direction);
  112. bool semicolon = anyPortableObject() ? false : true;
  113. os << buildFormula(agentName + "CannotSlip" + direction, buildDisjunction(agentName, walls, slipCell), semicolon);
  114. if(!semicolon) os << ";\n";
  115. }
  116. void PrismFormulaPrinter::printCollisionFormula(const AgentName &agentName) {
  117. if(!agentNameAndPositionMap.empty()) {
  118. os << "formula collision = ";
  119. bool first = true;
  120. for(auto const [name, coordinates] : agentNameAndPositionMap) {
  121. if(name == agentName) continue;
  122. if(first) first = false;
  123. else os << " | ";
  124. os << "(col"+agentName+"=col"+name+"&row"+agentName+"=row"+name+")";
  125. }
  126. os << ";\n";
  127. printCollisionLabel();
  128. }
  129. }
  130. void PrismFormulaPrinter::printCollisionLabel() {
  131. if(!agentNameAndPositionMap.empty()) {
  132. os << "label \"collision\" = collision;\n";
  133. }
  134. }
  135. void PrismFormulaPrinter::printInitStruct() {
  136. os << "init\n";
  137. bool first = true;
  138. for(auto const [a, coordinates] : agentNameAndPositionMap) {
  139. if(first) first = false;
  140. else os << " & ";
  141. os << "(col"+a+"="+std::to_string(coordinates.first)+"&row"+a+"="+std::to_string(coordinates.second)+" & ";
  142. os << "(view"+a+"=0|view"+a+"=1|view"+a+"=2|view"+a+"=3) ";
  143. if(faulty) os << " & previousAction"+a+"="+std::to_string(NOFAULT);
  144. os << ")";
  145. }
  146. for(auto const key : keys) {
  147. std::string identifier = capitalize(key.getColor()) + key.getType();
  148. os << " & (col"+identifier+"="+std::to_string(key.column)+"&row"+identifier+"="+std::to_string(key.row)+"&"+identifier+"PickedUp=false) ";
  149. }
  150. os << "endinit\n\n";
  151. }
  152. std::string PrismFormulaPrinter::buildFormula(const std::string &formulaName, const std::string &formula, const bool semicolon) {
  153. return "formula " + formulaName + " = " + formula + (semicolon ? ";\n": "");
  154. }
  155. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const std::map<ViewDirection, coordinates> &cells) {
  156. if(cells.size() == 0) return "false";
  157. bool first = true;
  158. std::string disjunction = "";
  159. for(const auto [viewDirection, coordinates] : cells) {
  160. if(first) first = false;
  161. else disjunction += " | ";
  162. disjunction += "(" + coordinatesToConjunction(agentName, coordinates, viewDirection) + ")";
  163. }
  164. return disjunction;
  165. }
  166. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const cells &cells) {
  167. if(cells.size() == 0) return "false";
  168. bool first = true;
  169. std::string disjunction = "";
  170. for(auto const cell : cells) {
  171. if(first) first = false;
  172. else disjunction += " | ";
  173. disjunction += "(" + cellToConjunction(agentName, cell) + ")";
  174. }
  175. return disjunction;
  176. }
  177. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const std::string &reason) {
  178. std::string disjunction = "";
  179. bool first = true;
  180. for(auto const [viewDirection, relativePosition] : getRelativeAdjacentCells()) {
  181. if(first) first = false;
  182. else disjunction += " | ";
  183. disjunction += "(" + objectPositionToConjunction(agentName, reason, relativePosition, viewDirection) + ")";
  184. }
  185. return disjunction;
  186. }
  187. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const cells &cells, const std::pair<int, int> &offset) {
  188. std::string disjunction = "";
  189. bool first = true;
  190. std::string xOffset = oneOffToString(offset.first);
  191. std::string yOffset = oneOffToString(offset.second);
  192. for(auto const cell : cells) {
  193. if(first) first = false;
  194. else disjunction += " | ";
  195. disjunction += "(" + cellToConjunctionWithOffset(agentName, cell, xOffset, yOffset) + ")";
  196. }
  197. return disjunction;
  198. }
  199. bool PrismFormulaPrinter::slipperyBehaviour() const {
  200. return !slipperyTiles.at("North").empty() || !slipperyTiles.at("East").empty() || !slipperyTiles.at("South").empty() || !slipperyTiles.at("West").empty();
  201. }
  202. bool PrismFormulaPrinter::anyPortableObject() const {
  203. return !keys.empty();
  204. }
  205. }