Changeset 88258c9 in network-game for common/WorldMap.cpp
- Timestamp:
- Sep 27, 2013, 6:13:24 PM (11 years ago)
- Branches:
- master
- Children:
- d519032
- Parents:
- 7d8d5d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/WorldMap.cpp
r7d8d5d3 r88258c9 227 227 if (line.size() > 0) 228 228 { 229 cout << "row: " << row << endl;230 cout << "line: " << line << endl;229 //cout << "row: " << row << endl; 230 //cout << "line: " << line << endl; 231 231 232 232 istringstream iss(line); … … 244 244 type = atoi(token.c_str()); 245 245 246 cout << "x: " << x << endl;247 cout << "token: " << token << endl;248 cout << "type: " << type << endl;246 //cout << "x: " << x << endl; 247 //cout << "token: " << token << endl; 248 //cout << "type: " << type << endl; 249 249 250 250 switch(type) { … … 269 269 270 270 getline(iss, token, ','); 271 cout << "token(x): " << token << endl;271 //cout << "token(x): " << token << endl; 272 272 x = atoi(token.c_str()); 273 273 274 274 getline(iss, token, ','); 275 cout << "token(y): " << token << endl;275 //cout << "token(y): " << token << endl; 276 276 y = atoi(token.c_str()); 277 277 278 278 getline(iss, token, ','); 279 cout << "token(type): " << token << endl;279 //cout << "token(type): " << token << endl; 280 280 type = atoi(token.c_str()); 281 281
Note:
See TracChangeset
for help on using the changeset viewer.