- Timestamp:
- Nov 7, 2018, 10:23:46 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/wagnis_HS18/src/modules/wagnis/WagnisGameboard.cc
r12072 r12077 38 38 orxout() << province->getID() << endl; 39 39 this->provs.push_back(province); 40 41 if(province->getID() == 1000){42 orxout() << "You added a province with ID 1000.\nThis is the magic debug number.\nThe function to initialize the neighbors of all provinces will be called:" << endl;43 orxout() << "-----neighbors-----" << endl << endl;44 initializeNeighbors(this->connections_string);45 }46 40 } 47 41 //XML get province … … 66 60 67 61 //Parses the string and initializes the neigbors vector of all provinces according 68 //Syntax: 32=7-8-4 , 2=33 -5-7-1-462 //Syntax: 32=7-8-4 , 2=33+5+7+1+4 69 63 void WagnisGameboard::initializeNeighbors(std::string str){ 70 64 orxout() << "inizializing started" << endl; … … 79 73 if(n == str.size() || str[n] != '='){ 80 74 orxout() << "Error while parsing neighbors-string: '=' expected at position: "<< n << endl; 81 orxout() << "Correct syntax: 32=4 -2-5-67, 54=8-1-12" << endl;75 orxout() << "Correct syntax: 32=4+2+5+67, 54=8+1+12" << endl; 82 76 } 83 77 int other_ID; … … 100 94 break; 101 95 } 102 }while(n < str.size() && str[n] == ' -');96 }while(n < str.size() && str[n] == '+'); 103 97 if(n == str.size()) return; 104 98 while(n < str.size() && str[n] == ' ') n++; … … 106 100 if(str[n] != ','){ 107 101 orxout() << "Error while parsing neighbors-string: ',' expected at position: "<< n << endl; 108 orxout() << "Correct syntax: 32=4 -2-5-67, 54=8-1-12" << endl;102 orxout() << "Correct syntax: 32=4+2+5+67, 54=8+1+12" << endl; 109 103 } 110 104 n++; … … 123 117 if(digit < 0 || digit > 9){ 124 118 orxout() << "Error while parsing neighbors-string: Digit expected at position: "<< n << endl; 125 orxout() << "Correct syntax: 32=4 -2-5-67, 54=8-1-12" << endl;119 orxout() << "Correct syntax: 32=4+2+5+67, 54=8+1+12" << endl; 126 120 } 127 121
Note: See TracChangeset
for help on using the changeset viewer.