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.

239 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 = {agentName + "IsOnSlipperyNorth", agentName + "IsOnSlipperyEast", agentName + "IsOnSlipperySouth", agentName + "IsOnSlipperyWest"};
  62. os << buildFormula(agentName + "IsOnSlippery", vectorToDisjunction(allSlipperyDirections));
  63. for(const auto& [direction, relativePosition] : getRelativeSurroundingCells()) {
  64. printSlipRestrictionFormula(agentName, direction);
  65. }
  66. } else {
  67. os << buildFormula(agentName + "IsOnSlippery", "false");
  68. }
  69. if(!lava.empty()) printIsOnFormula(agentName, "Lava", lava);
  70. if(!goals.empty()) printIsOnFormula(agentName, "Goal", goals);
  71. for(const auto& key : keys) {
  72. std::string identifier = capitalize(key.getColor()) + key.getType();
  73. printRelativeIsInFrontOfFormulaWithCondition(agentName, identifier, "!" + identifier + "PickedUp");
  74. portableObjects.push_back(agentName + "Carrying" + identifier);
  75. }
  76. for(const auto& door : unlockedDoors) {
  77. std::string identifier = capitalize(door.getColor()) + door.getType();
  78. printRestrictionFormulaWithCondition(agentName, identifier, getAdjacentCells(door), "!" + identifier + "Open");
  79. printIsNextToFormula(agentName, identifier, getAdjacentCells(door));
  80. }
  81. for(const auto& door : lockedDoors) {
  82. std::string identifier = capitalize(door.getColor()) + door.getType();
  83. printRestrictionFormulaWithCondition(agentName, identifier, getAdjacentCells(door), "!" + identifier + "Open");
  84. printIsNextToFormula(agentName, identifier, getAdjacentCells(door));
  85. }
  86. if(conditionalMovementRestrictions.size() > 0) {
  87. os << buildFormula(agentName + "CannotMoveConditionally", vectorToDisjunction(conditionalMovementRestrictions));
  88. }
  89. if(portableObjects.size() > 0) {
  90. os << buildFormula(agentName + "IsCarrying", vectorToDisjunction(portableObjects));
  91. }
  92. }
  93. void PrismFormulaPrinter::printRestrictionFormula(const AgentName &agentName, const std::string &direction, const cells &grid_cells) {
  94. os << buildFormula(agentName + "CannotMove" + direction + "Wall", buildDisjunction(agentName, grid_cells));
  95. }
  96. void PrismFormulaPrinter::printIsOnFormula(const AgentName &agentName, const std::string &type, const cells &grid_cells, const std::string &direction) {
  97. os << buildFormula(agentName + "IsOn" + type + direction, buildDisjunction(agentName, grid_cells));
  98. }
  99. void PrismFormulaPrinter::printIsNextToFormula(const AgentName &agentName, const std::string &type, const std::map<ViewDirection, coordinates> &coordinates) {
  100. os << buildFormula(agentName + "IsNextTo" + type, buildDisjunction(agentName, coordinates));
  101. }
  102. void PrismFormulaPrinter::printRestrictionFormulaWithCondition(const AgentName &agentName, const std::string &reason, const std::map<ViewDirection, coordinates> &coordinates, const std::string &condition) {
  103. os << buildFormula(agentName + "CannotMove" + reason, "(" + buildDisjunction(agentName, coordinates) + ") & " + condition);
  104. conditionalMovementRestrictions.push_back(agentName + "CannotMove" + reason);
  105. }
  106. void PrismFormulaPrinter::printRelativeIsInFrontOfFormulaWithCondition(const AgentName &agentName, const std::string &reason, const std::string &condition) {
  107. os << buildFormula(agentName + "IsInFrontOf" + reason, "(" + buildDisjunction(agentName, reason) + ") & " + condition);
  108. }
  109. void PrismFormulaPrinter::printSlipRestrictionFormula(const AgentName &agentName, const std::string &direction) {
  110. std::pair<int, int> slipCell = getRelativeSurroundingCells().at(direction);
  111. bool semicolon = anyPortableObject() ? false : true;
  112. os << buildFormula(agentName + "CannotSlip" + direction, buildDisjunction(agentName, walls, slipCell), semicolon);
  113. if(!semicolon) os << ";\n";
  114. }
  115. void PrismFormulaPrinter::printCollisionFormula(const AgentName &agentName) {
  116. if(!agentNameAndPositionMap.empty()) {
  117. os << "formula collision = ";
  118. bool first = true;
  119. for(auto const [name, coordinates] : agentNameAndPositionMap) {
  120. if(name == agentName) continue;
  121. if(first) first = false;
  122. else os << " | ";
  123. os << "(col"+agentName+"=col"+name+"&row"+agentName+"=row"+name+")";
  124. }
  125. os << ";\n";
  126. printCollisionLabel();
  127. }
  128. }
  129. void PrismFormulaPrinter::printCollisionLabel() {
  130. if(!agentNameAndPositionMap.empty()) {
  131. os << "label \"collision\" = collision;\n";
  132. }
  133. }
  134. void PrismFormulaPrinter::printInitStruct() {
  135. os << "init\n true\n";
  136. //bool first = true;
  137. //for(auto const [a, coordinates] : agentNameAndPositionMap) {
  138. // if(first) first = false;
  139. // else os << " & ";
  140. // os << "(col"+a+"="+std::to_string(coordinates.first)+"&row"+a+"="+std::to_string(coordinates.second)+" & ";
  141. // os << "(view"+a+"=0|view"+a+"=1|view"+a+"=2|view"+a+"=3) ";
  142. // if(faulty) os << " & previousAction"+a+"="+std::to_string(NOFAULT);
  143. // os << ")";
  144. //}
  145. //for(auto const key : keys) {
  146. // std::string identifier = capitalize(key.getColor()) + key.getType();
  147. // os << " & (col"+identifier+"="+std::to_string(key.column)+"&row"+identifier+"="+std::to_string(key.row)+"&"+identifier+"PickedUp=false) ";
  148. //}
  149. os << "endinit\n\n";
  150. }
  151. std::string PrismFormulaPrinter::buildFormula(const std::string &formulaName, const std::string &formula, const bool semicolon) {
  152. return "formula " + formulaName + " = " + formula + (semicolon ? ";\n": "");
  153. }
  154. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const std::map<ViewDirection, coordinates> &cells) {
  155. if(cells.size() == 0) return "false";
  156. bool first = true;
  157. std::string disjunction = "";
  158. for(const auto [viewDirection, coordinates] : cells) {
  159. if(first) first = false;
  160. else disjunction += " | ";
  161. disjunction += "(" + coordinatesToConjunction(agentName, coordinates, viewDirection) + ")";
  162. }
  163. return disjunction;
  164. }
  165. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const cells &cells) {
  166. if(cells.size() == 0) return "false";
  167. bool first = true;
  168. std::string disjunction = "";
  169. for(auto const cell : cells) {
  170. if(first) first = false;
  171. else disjunction += " | ";
  172. disjunction += "(" + cellToConjunction(agentName, cell) + ")";
  173. }
  174. return disjunction;
  175. }
  176. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const std::string &reason) {
  177. std::string disjunction = "";
  178. bool first = true;
  179. for(auto const [viewDirection, relativePosition] : getRelativeAdjacentCells()) {
  180. if(first) first = false;
  181. else disjunction += " | ";
  182. disjunction += "(" + objectPositionToConjunction(agentName, reason, relativePosition, viewDirection) + ")";
  183. }
  184. return disjunction;
  185. }
  186. std::string PrismFormulaPrinter::buildDisjunction(const AgentName &agentName, const cells &cells, const std::pair<int, int> &offset) {
  187. std::string disjunction = "";
  188. bool first = true;
  189. std::string xOffset = oneOffToString(offset.first);
  190. std::string yOffset = oneOffToString(offset.second);
  191. for(auto const cell : cells) {
  192. if(first) first = false;
  193. else disjunction += " | ";
  194. disjunction += "(" + cellToConjunctionWithOffset(agentName, cell, xOffset, yOffset) + ")";
  195. }
  196. return disjunction;
  197. }
  198. bool PrismFormulaPrinter::slipperyBehaviour() const {
  199. return !slipperyTiles.at("North").empty() || !slipperyTiles.at("East").empty() || !slipperyTiles.at("South").empty() || !slipperyTiles.at("West").empty();
  200. }
  201. bool PrismFormulaPrinter::anyPortableObject() const {
  202. return !keys.empty();
  203. }
  204. }