Files
@ r26102:502baaa2877d
Branch filter:
Location: cpp/openttd-patchpack/source/src/command.cpp - annotation
r26102:502baaa2877d
21.8 KiB
text/x-c
Codechange: Template DoCommand to automagically reflect the parameters of the command proc.
When finished, this will allow each command handler to take individually
different parameters, obliviating the need for bit-packing.
When finished, this will allow each command handler to take individually
different parameters, obliviating the need for bit-packing.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r6123:049e9624d068 r5584:545d748cc681 r6453:b0b56773284a r18617:524f2e0f54dc r5584:545d748cc681 r8116:df67d3c5e4fd r15850:2444eb8842d1 r5584:545d748cc681 r5584:545d748cc681 r8114:866ed489ed98 r17265:6b8bc35a03d2 r8232:f2761d7ff77f r8247:adcdb6aead11 r10208:ef8fcc3dc4ca r10208:ef8fcc3dc4ca r8306:a191fc6e2f8e r15284:a975e22a01ee r16026:de6f171ab049 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26099:9c675ef812ea r26099:9c675ef812ea r26094:7572e88decb3 r26094:7572e88decb3 r5584:545d748cc681 r8264:d493cb51fe8a r8264:d493cb51fe8a r21383:942c32fb8b0e r21383:942c32fb8b0e r5584:545d748cc681 r26101:ab0b3d8e557e r26101:ab0b3d8e557e r26101:ab0b3d8e557e r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r5584:545d748cc681 r26094:7572e88decb3 r26094:7572e88decb3 r5584:545d748cc681 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r26094:7572e88decb3 r14981:edf3934972c6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r14813:2dc255bde71a r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r26094:7572e88decb3 r5584:545d748cc681 r5584:545d748cc681 r7559:3b00f02bc9f6 r23607:36c15679007d r7559:3b00f02bc9f6 r19944:25a78576fb5e r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r26094:7572e88decb3 r5584:545d748cc681 r26094:7572e88decb3 r5584:545d748cc681 r5584:545d748cc681 r7559:3b00f02bc9f6 r10604:3c1ed1b55521 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r26092:d96f469449f6 r5584:545d748cc681 r10237:950177a262c8 r10237:950177a262c8 r26092:d96f469449f6 r5584:545d748cc681 r5584:545d748cc681 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r26092:d96f469449f6 r14981:edf3934972c6 r14981:edf3934972c6 r14981:edf3934972c6 r26092:d96f469449f6 r14981:edf3934972c6 r14981:edf3934972c6 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r26094:7572e88decb3 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r16685:e529cb769028 r17266:fd37372a3e14 r16685:e529cb769028 r24521:57ec498b9221 r16685:e529cb769028 r16685:e529cb769028 r26092:d96f469449f6 r16685:e529cb769028 r16685:e529cb769028 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r10207:a1fc2f2a33db r10207:a1fc2f2a33db r7559:3b00f02bc9f6 r10207:a1fc2f2a33db r7559:3b00f02bc9f6 r6990:2b928bd441ba r5584:545d748cc681 r10207:a1fc2f2a33db r11919:363b629324b9 r11917:612c11f7ab47 r5584:545d748cc681 r5584:545d748cc681 r10624:44138dbb3250 r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r26102:502baaa2877d r7559:3b00f02bc9f6 r10207:a1fc2f2a33db r7559:3b00f02bc9f6 r14813:2dc255bde71a r14813:2dc255bde71a r7559:3b00f02bc9f6 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26092:d96f469449f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r7559:3b00f02bc9f6 r10499:570896340d7a r14813:2dc255bde71a r7559:3b00f02bc9f6 r26092:d96f469449f6 r5584:545d748cc681 r14224:4cf91ac6c669 r23838:bfeaabaa7b1d r14224:4cf91ac6c669 r17966:0c023b07072a r14224:4cf91ac6c669 r14224:4cf91ac6c669 r17966:0c023b07072a r26092:d96f469449f6 r23280:382c4bba9365 r10605:0da991e601f2 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26092:d96f469449f6 r5584:545d748cc681 r14224:4cf91ac6c669 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r24267:a453396675d0 r26092:d96f469449f6 r16686:7f6b83a717de r16686:7f6b83a717de r16686:7f6b83a717de r15854:1a79e88a5296 r26092:d96f469449f6 r15850:2444eb8842d1 r26092:d96f469449f6 r14304:dc9cb5b9e881 r14224:4cf91ac6c669 r26092:d96f469449f6 r26092:d96f469449f6 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r18245:fb370bf5a3c0 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r23607:36c15679007d r26097:38be59df2287 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14304:dc9cb5b9e881 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26091:9a8d99243966 r26092:d96f469449f6 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26091:9a8d99243966 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26092:d96f469449f6 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26092:d96f469449f6 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r26092:d96f469449f6 r26091:9a8d99243966 r26092:d96f469449f6 r26091:9a8d99243966 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r26099:9c675ef812ea r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26091:9a8d99243966 r26092:d96f469449f6 r26091:9a8d99243966 r26091:9a8d99243966 r26091:9a8d99243966 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26092:d96f469449f6 r14224:4cf91ac6c669 r26101:ab0b3d8e557e r26101:ab0b3d8e557e r14224:4cf91ac6c669 r26101:ab0b3d8e557e r14224:4cf91ac6c669 r14224:4cf91ac6c669 r5584:545d748cc681 r5584:545d748cc681 r14224:4cf91ac6c669 r26094:7572e88decb3 r26092:d96f469449f6 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r23607:36c15679007d r5584:545d748cc681 r10605:0da991e601f2 r18369:bc3de8f003de r10692:ff32a4e34c54 r11090:9276cea703d4 r7521:58ef67185405 r15850:2444eb8842d1 r15850:2444eb8842d1 r15850:2444eb8842d1 r10855:5a3c2f38f98e r26101:ab0b3d8e557e r10855:5a3c2f38f98e r12024:9896e4dc0d8d r15360:111b979f44e3 r12026:96e8bcc60bf7 r12023:d3ea36a7c778 r12023:d3ea36a7c778 r12023:d3ea36a7c778 r18744:51d0ed99c8f2 r26101:ab0b3d8e557e r12023:d3ea36a7c778 r10997:839c6ffde00e r23674:a5bafa1a02c5 r15284:a975e22a01ee r15284:a975e22a01ee r14224:4cf91ac6c669 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r23517:1a32c3c14728 r18923:99aed75c0fd1 r21283:ba592c088a09 r26095:00c14d52e378 r21283:ba592c088a09 r18923:99aed75c0fd1 r5584:545d748cc681 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r5584:545d748cc681 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r26092:d96f469449f6 r18936:2ed714e2a8fa r18936:2ed714e2a8fa r26099:9c675ef812ea r18936:2ed714e2a8fa r18923:99aed75c0fd1 r26101:ab0b3d8e557e r5584:545d748cc681 r5584:545d748cc681 r12023:d3ea36a7c778 r12023:d3ea36a7c778 r5584:545d748cc681 r5584:545d748cc681 r26092:d96f469449f6 r26092:d96f469449f6 r15284:a975e22a01ee r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r26101:ab0b3d8e557e r5584:545d748cc681 r26099:9c675ef812ea r5584:545d748cc681 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r23517:1a32c3c14728 r21283:ba592c088a09 r26095:00c14d52e378 r21283:ba592c088a09 r14224:4cf91ac6c669 r26092:d96f469449f6 r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r15284:a975e22a01ee r14224:4cf91ac6c669 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r18923:99aed75c0fd1 r14304:dc9cb5b9e881 r14304:dc9cb5b9e881 r26101:ab0b3d8e557e r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r14224:4cf91ac6c669 r15036:b7a46ecb32b6 r15036:b7a46ecb32b6 r15036:b7a46ecb32b6 r14224:4cf91ac6c669 r26101:ab0b3d8e557e r14224:4cf91ac6c669 r14224:4cf91ac6c669 r10207:a1fc2f2a33db r11944:3b8f9f948e8d r11944:3b8f9f948e8d r23607:36c15679007d r5584:545d748cc681 r5584:545d748cc681 r10207:a1fc2f2a33db r5584:545d748cc681 r8306:a191fc6e2f8e r8306:a191fc6e2f8e r8306:a191fc6e2f8e r26101:ab0b3d8e557e r5584:545d748cc681 r8854:b4bbf0180038 r8854:b4bbf0180038 r14547:a4cc19b19cd3 r14547:a4cc19b19cd3 r14547:a4cc19b19cd3 r14547:a4cc19b19cd3 r14547:a4cc19b19cd3 r14549:56c5f10f6f93 r8854:b4bbf0180038 r8854:b4bbf0180038 r8854:b4bbf0180038 r8854:b4bbf0180038 r8854:b4bbf0180038 r8854:b4bbf0180038 r8854:b4bbf0180038 r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r21155:4f83de14e882 r21155:4f83de14e882 r17828:bcc2d03aefbe r21155:4f83de14e882 r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r21155:4f83de14e882 r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe r17828:bcc2d03aefbe | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file command.cpp Handling of commands. */
#include "stdafx.h"
#include "landscape.h"
#include "error.h"
#include "gui.h"
#include "command_func.h"
#include "network/network_type.h"
#include "network/network.h"
#include "genworld.h"
#include "strings_func.h"
#include "texteff.hpp"
#include "town.h"
#include "date_func.h"
#include "company_func.h"
#include "company_base.h"
#include "signal_func.h"
#include "core/backup_type.hpp"
#include "object_base.h"
#include "autoreplace_cmd.h"
#include "company_cmd.h"
#include "depot_cmd.h"
#include "economy_cmd.h"
#include "engine_cmd.h"
#include "goal_cmd.h"
#include "group_cmd.h"
#include "industry_cmd.h"
#include "landscape_cmd.h"
#include "misc_cmd.h"
#include "news_cmd.h"
#include "object_cmd.h"
#include "order_cmd.h"
#include "rail_cmd.h"
#include "road_cmd.h"
#include "roadveh_cmd.h"
#include "settings_cmd.h"
#include "signs_cmd.h"
#include "station_cmd.h"
#include "story_cmd.h"
#include "subsidy_cmd.h"
#include "terraform_cmd.h"
#include "timetable_cmd.h"
#include "town_cmd.h"
#include "train_cmd.h"
#include "tree_cmd.h"
#include "tunnelbridge_cmd.h"
#include "vehicle_cmd.h"
#include "viewport_cmd.h"
#include "water_cmd.h"
#include "waypoint_cmd.h"
#include "misc/endian_buffer.hpp"
#include "string_func.h"
#include <array>
#include "table/strings.h"
#include "safeguards.h"
int RecursiveCommandCounter::_counter = 0;
/**
* Define a command with the flags which belongs to it.
*
* This struct connects a command handler function with the flags created with
* the #CMD_AUTO, #CMD_OFFLINE and #CMD_SERVER values.
*/
struct CommandInfo {
CommandProc *proc; ///< The procedure to actually executing
const char *name; ///< A human readable name for the procedure
CommandFlags flags; ///< The (command) flags to that apply to this command
CommandType type; ///< The type of command.
};
/* Helpers to generate the master command table from the command traits. */
template <typename T>
inline constexpr CommandInfo CommandFromTrait() noexcept { return { T::proc, T::name, T::flags, T::type }; };
template<typename T, T... i>
inline constexpr auto MakeCommandsFromTraits(std::integer_sequence<T, i...>) noexcept {
return std::array<CommandInfo, sizeof...(i)>{{ CommandFromTrait<CommandTraits<static_cast<Commands>(i)>>()... }};
}
/**
* The master command table
*
* This table contains all possible CommandProc functions with
* the flags which belongs to it. The indices are the same
* as the value from the CMD_* enums.
*/
static constexpr auto _command_proc_table = MakeCommandsFromTraits(std::make_integer_sequence<std::underlying_type_t<Commands>, CMD_END>{});
/*!
* This function range-checks a cmd, and checks if the cmd is not nullptr
*
* @param cmd The integer value of a command
* @return true if the command is valid (and got a CommandProc function)
*/
bool IsValidCommand(Commands cmd)
{
return cmd < _command_proc_table.size() && _command_proc_table[cmd].proc != nullptr;
}
/*!
* This function mask the parameter with CMD_ID_MASK and returns
* the flags which belongs to the given command.
*
* @param cmd The integer value of the command
* @return The flags for this command
*/
CommandFlags GetCommandFlags(Commands cmd)
{
assert(IsValidCommand(cmd));
return _command_proc_table[cmd].flags;
}
/*!
* This function mask the parameter with CMD_ID_MASK and returns
* the name which belongs to the given command.
*
* @param cmd The integer value of the command
* @return The name for this command
*/
const char *GetCommandName(Commands cmd)
{
assert(IsValidCommand(cmd));
return _command_proc_table[cmd].name;
}
/**
* Returns whether the command is allowed while the game is paused.
* @param cmd The command to check.
* @return True if the command is allowed while paused, false otherwise.
*/
bool IsCommandAllowedWhilePaused(Commands cmd)
{
/* Lookup table for the command types that are allowed for a given pause level setting. */
static const int command_type_lookup[] = {
CMDPL_ALL_ACTIONS, ///< CMDT_LANDSCAPE_CONSTRUCTION
CMDPL_NO_LANDSCAPING, ///< CMDT_VEHICLE_CONSTRUCTION
CMDPL_NO_LANDSCAPING, ///< CMDT_MONEY_MANAGEMENT
CMDPL_NO_CONSTRUCTION, ///< CMDT_VEHICLE_MANAGEMENT
CMDPL_NO_CONSTRUCTION, ///< CMDT_ROUTE_MANAGEMENT
CMDPL_NO_CONSTRUCTION, ///< CMDT_OTHER_MANAGEMENT
CMDPL_NO_CONSTRUCTION, ///< CMDT_COMPANY_SETTING
CMDPL_NO_ACTIONS, ///< CMDT_SERVER_SETTING
CMDPL_NO_ACTIONS, ///< CMDT_CHEAT
};
static_assert(lengthof(command_type_lookup) == CMDT_END);
assert(IsValidCommand(cmd));
return _game_mode == GM_EDITOR || command_type_lookup[_command_proc_table[cmd].type] <= _settings_game.construction.command_pause_level;
}
/*!
* This functions returns the money which can be used to execute a command.
* This is either the money of the current company or INT64_MAX if there
* is no such a company "at the moment" like the server itself.
*
* @return The available money of a company or INT64_MAX
*/
Money GetAvailableMoneyForCommand()
{
CompanyID company = _current_company;
if (!Company::IsValidID(company)) return INT64_MAX;
return Company::Get(company)->money;
}
/**
* Prepare for calling a command proc.
* @param top_level Top level of command execution, i.e. command from a command.
* @param test Test run of command?
*/
void CommandHelperBase::InternalDoBefore(bool top_level, bool test)
{
if (top_level) _cleared_object_areas.clear();
if (test) SetTownRatingTestMode(true);
}
/**
* Process result after calling a command proc.
* @param[in,out] res Command result, may be modified.
* @param flags Command flags.
* @param top_level Top level of command execution, i.e. command from a command.
* @param test Test run of command?
*/
void CommandHelperBase::InternalDoAfter(CommandCost &res, DoCommandFlag flags, bool top_level, bool test)
{
if (test) {
SetTownRatingTestMode(false);
if (res.Succeeded() && top_level && !(flags & DC_QUERY_COST) && !(flags & DC_BANKRUPT)) {
CheckCompanyHasMoney(res); // CheckCompanyHasMoney() modifies 'res' to an error if it fails.
}
} else {
/* If top-level, subtract the money. */
if (res.Succeeded() && top_level && !(flags & DC_BANKRUPT)) {
SubtractMoneyFromCompany(res);
}
}
}
/*!
* Toplevel network safe docommand function for the current company. Must not be called recursively.
* The callback is called when the command succeeded or failed. The parameters
* \a tile, \a p1, and \a p2 are from the #CommandProc function. The parameter \a cmd is the command to execute.
* The parameter \a my_cmd is used to indicate if the command is from a company or the server.
*
* @param cmd The command to execute (a CMD_* value)
* @param callback A callback function to call after the command is finished
* @param my_cmd indicator if the command is from a company or server (to display error messages for a user)
* @param network_command execute the command without sending it on the network
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
static bool DoCommandP(Commands cmd, StringID err_message, CommandCallback *callback, bool my_cmd, bool network_command, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
/* Cost estimation is generally only done when the
* local user presses shift while doing something.
* However, in case of incoming network commands,
* map generation or the pause button we do want
* to execute. */
bool estimate_only = _shift_pressed && IsLocalCompany() &&
!_generating_world &&
!network_command &&
!(GetCommandFlags(cmd) & CMD_NO_EST);
/* We're only sending the command, so don't do
* fancy things for 'success'. */
bool only_sending = _networking && !network_command;
/* Where to show the message? */
int x = TileX(tile) * TILE_SIZE;
int y = TileY(tile) * TILE_SIZE;
if (_pause_mode != PM_UNPAUSED && !IsCommandAllowedWhilePaused(cmd) && !estimate_only) {
ShowErrorMessage(err_message, STR_ERROR_NOT_ALLOWED_WHILE_PAUSED, WL_INFO, x, y);
return false;
}
/* Only set p2 when the command does not come from the network. */
if (!network_command && GetCommandFlags(cmd) & CMD_CLIENT_ID && p2 == 0) p2 = CLIENT_ID_SERVER;
CommandCost res = DoCommandPInternal(cmd, err_message, callback, my_cmd, estimate_only, network_command, tile, p1, p2, text);
if (res.Failed()) {
/* Only show the error when it's for us. */
if (estimate_only || (IsLocalCompany() && err_message != 0 && my_cmd)) {
ShowErrorMessage(err_message, res.GetErrorMessage(), WL_INFO, x, y, res.GetTextRefStackGRF(), res.GetTextRefStackSize(), res.GetTextRefStack());
}
} else if (estimate_only) {
ShowEstimatedCostOrIncome(res.GetCost(), x, y);
} else if (!only_sending && res.GetCost() != 0 && tile != 0 && IsLocalCompany() && _game_mode != GM_EDITOR) {
/* Only show the cost animation when we did actually
* execute the command, i.e. we're not sending it to
* the server, when it has cost the local company
* something. Furthermore in the editor there is no
* concept of cost, so don't show it there either. */
ShowCostOrIncomeAnimation(x, y, GetSlopePixelZ(x, y), res.GetCost());
}
if (!estimate_only && !only_sending && callback != nullptr) {
callback(res, cmd, tile, p1, p2, text);
}
return res.Succeeded();
}
/**
* Shortcut for the long DoCommandP when not using a callback or error message.
* @param cmd The command to execute (a CMD_* value)
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
bool DoCommandP(Commands cmd, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return DoCommandP(cmd, STR_NULL, nullptr, true, false, tile, p1, p2, text);
}
/**
* Shortcut for the long DoCommandP when not using an error message.
* @param cmd The command to execute (a CMD_* value)
* @param callback A callback function to call after the command is finished
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
bool DoCommandP(Commands cmd, CommandCallback *callback, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return DoCommandP(cmd, STR_NULL, callback, true, false, tile, p1, p2, text);
}
/**
* Shortcut for the long DoCommandP when not using a callback.
* @param cmd The command to execute (a CMD_* value)
* @param err_message Message prefix to show on error
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
bool DoCommandP(Commands cmd, StringID err_message, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return DoCommandP(cmd, err_message, nullptr, true, false, tile, p1, p2, text);
}
/*!
* Toplevel network safe docommand function for the current company. Must not be called recursively.
* The callback is called when the command succeeded or failed. The parameters
* \a tile, \a p1, and \a p2 are from the #CommandProc function. The parameter \a cmd is the command to execute.
*
* @param cmd The command to execute (a CMD_* value)
* @param err_message Message prefix to show on error
* @param callback A callback function to call after the command is finished
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
bool DoCommandP(Commands cmd, StringID err_message, CommandCallback *callback, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return DoCommandP(cmd, err_message, callback, true, false, tile, p1, p2, text);
}
/**
* Toplevel network safe docommand function for the current company. Must not be called recursively.
* The callback is called when the command succeeded or failed. The parameters
* \a tile, \a p1, and \a p2 are from the #CommandProc function. The parameter \a cmd is the command to execute.
*
* @param cmd The command to execute (a CMD_* value)
* @param err_message Message prefix to show on error
* @param callback A callback function to call after the command is finished
* @param my_cmd indicator if the command is from a company or server (to display error messages for a user)
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return \c true if the command succeeded, else \c false.
*/
bool InjectNetworkCommand(Commands cmd, StringID err_message, CommandCallback *callback, bool my_cmd, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return DoCommandP(cmd, err_message, callback, my_cmd, true, tile, p1, p2, text);
}
/** Helper to format command parameters into a hex string. */
static std::string CommandParametersToHexString(TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
return FormatArrayAsHex(EndianBufferWriter<>::FromValue(std::make_tuple(tile, p1, p2, text)));
}
/*!
* Helper function for the toplevel network safe docommand function for the current company.
*
* @param cmd The command to execute (a CMD_* value)
* @param err_message Message prefix to show on error
* @param callback A callback function to call after the command is finished
* @param my_cmd indicator if the command is from a company or server (to display error messages for a user)
* @param estimate_only whether to give only the estimate or also execute the command
* @param tile The tile to perform a command on (see #CommandProc)
* @param p1 Additional data for the command (see #CommandProc)
* @param p2 Additional data for the command (see #CommandProc)
* @param text The text to pass
* @return the command cost of this function.
*/
CommandCost DoCommandPInternal(Commands cmd, StringID err_message, CommandCallback *callback, bool my_cmd, bool estimate_only, bool network_command, TileIndex tile, uint32 p1, uint32 p2, const std::string &text)
{
RecursiveCommandCounter counter{};
/* Prevent recursion; it gives a mess over the network */
assert(counter.IsTopLevel());
/* Reset the state. */
_additional_cash_required = 0;
/* Get pointer to command handler */
assert(cmd < _command_proc_table.size());
CommandProc *proc = _command_proc_table[cmd].proc;
/* Shouldn't happen, but you never know when someone adds
* NULLs to the _command_proc_table. */
assert(proc != nullptr);
/* Command flags are used internally */
CommandFlags cmd_flags = GetCommandFlags(cmd);
/* Flags get send to the DoCommand */
DoCommandFlag flags = CommandFlagsToDCFlags(cmd_flags);
/* Make sure p2 is properly set to a ClientID. */
assert(!(cmd_flags & CMD_CLIENT_ID) || p2 != 0);
/* Do not even think about executing out-of-bounds tile-commands */
if (tile != 0 && (tile >= MapSize() || (!IsValidTile(tile) && (cmd_flags & CMD_ALL_TILES) == 0))) return CMD_ERROR;
/* Always execute server and spectator commands as spectator */
bool exec_as_spectator = (cmd_flags & (CMD_SPECTATOR | CMD_SERVER)) != 0;
/* If the company isn't valid it may only do server command or start a new company!
* The server will ditch any server commands a client sends to it, so effectively
* this guards the server from executing functions for an invalid company. */
if (_game_mode == GM_NORMAL && !exec_as_spectator && !Company::IsValidID(_current_company) && !(_current_company == OWNER_DEITY && (cmd_flags & CMD_DEITY) != 0)) {
return CMD_ERROR;
}
Backup<CompanyID> cur_company(_current_company, FILE_LINE);
if (exec_as_spectator) cur_company.Change(COMPANY_SPECTATOR);
bool test_and_exec_can_differ = (cmd_flags & CMD_NO_TEST) != 0;
/* Test the command. */
_cleared_object_areas.clear();
SetTownRatingTestMode(true);
BasePersistentStorageArray::SwitchMode(PSM_ENTER_TESTMODE);
CommandCost res = proc(flags, tile, p1, p2, text);
BasePersistentStorageArray::SwitchMode(PSM_LEAVE_TESTMODE);
SetTownRatingTestMode(false);
/* Make sure we're not messing things up here. */
assert(exec_as_spectator ? _current_company == COMPANY_SPECTATOR : cur_company.Verify());
/* If the command fails, we're doing an estimate
* or the player does not have enough money
* (unless it's a command where the test and
* execution phase might return different costs)
* we bail out here. */
if (res.Failed() || estimate_only ||
(!test_and_exec_can_differ && !CheckCompanyHasMoney(res))) {
if (!_networking || _generating_world || network_command) {
/* Log the failed command as well. Just to be able to be find
* causes of desyncs due to bad command test implementations. */
Debug(desync, 1, "cmdf: {:08x}; {:02x}; {:02x}; {:08x}; {:08x}; {:06x}; {} ({})", _date, _date_fract, (int)_current_company, cmd, err_message, tile, CommandParametersToHexString(tile, p1, p2, text), GetCommandName(cmd));
}
cur_company.Restore();
return res;
}
/*
* If we are in network, and the command is not from the network
* send it to the command-queue and abort execution
*/
if (_networking && !_generating_world && !network_command) {
NetworkSendCommand(cmd, err_message, callback, _current_company, tile, p1, p2, text);
cur_company.Restore();
/* Don't return anything special here; no error, no costs.
* This way it's not handled by DoCommand and only the
* actual execution of the command causes messages. Also
* reset the storages as we've not executed the command. */
return CommandCost();
}
Debug(desync, 1, "cmd: {:08x}; {:02x}; {:02x}; {:08x}; {:08x}; {:06x}; {} ({})", _date, _date_fract, (int)_current_company, cmd, err_message, tile, CommandParametersToHexString(tile, p1, p2, text), GetCommandName(cmd));
/* Actually try and execute the command. If no cost-type is given
* use the construction one */
_cleared_object_areas.clear();
BasePersistentStorageArray::SwitchMode(PSM_ENTER_COMMAND);
CommandCost res2 = proc(flags | DC_EXEC, tile, p1, p2, text);
BasePersistentStorageArray::SwitchMode(PSM_LEAVE_COMMAND);
if (cmd == CMD_COMPANY_CTRL) {
cur_company.Trash();
/* We are a new company -> Switch to new local company.
* We were closed down -> Switch to spectator
* Some other company opened/closed down -> The outside function will switch back */
_current_company = _local_company;
} else {
/* Make sure nothing bad happened, like changing the current company. */
assert(exec_as_spectator ? _current_company == COMPANY_SPECTATOR : cur_company.Verify());
cur_company.Restore();
}
/* If the test and execution can differ we have to check the
* return of the command. Otherwise we can check whether the
* test and execution have yielded the same result,
* i.e. cost and error state are the same. */
if (!test_and_exec_can_differ) {
assert(res.GetCost() == res2.GetCost() && res.Failed() == res2.Failed()); // sanity check
} else if (res2.Failed()) {
return res2;
}
/* If we're needing more money and we haven't done
* anything yet, ask for the money! */
if (_additional_cash_required != 0 && res2.GetCost() == 0) {
/* It could happen we removed rail, thus gained money, and deleted something else.
* So make sure the signal buffer is empty even in this case */
UpdateSignalsInBuffer();
SetDParam(0, _additional_cash_required);
return CommandCost(STR_ERROR_NOT_ENOUGH_CASH_REQUIRES_CURRENCY);
}
/* update last build coordinate of company. */
if (tile != 0) {
Company *c = Company::GetIfValid(_current_company);
if (c != nullptr) c->last_build_coordinate = tile;
}
SubtractMoneyFromCompany(res2);
/* update signals if needed */
UpdateSignalsInBuffer();
return res2;
}
/**
* Adds the cost of the given command return value to this cost.
* Also takes a possible error message when it is set.
* @param ret The command to add the cost of.
*/
void CommandCost::AddCost(const CommandCost &ret)
{
this->AddCost(ret.cost);
if (this->success && !ret.success) {
this->message = ret.message;
this->success = false;
}
}
/**
* Values to put on the #TextRefStack for the error message.
* There is only one static instance of the array, just like there is only one
* instance of normal DParams.
*/
uint32 CommandCost::textref_stack[16];
/**
* Activate usage of the NewGRF #TextRefStack for the error message.
* @param grffile NewGRF that provides the #TextRefStack
* @param num_registers number of entries to copy from the temporary NewGRF registers
*/
void CommandCost::UseTextRefStack(const GRFFile *grffile, uint num_registers)
{
extern TemporaryStorageArray<int32, 0x110> _temp_store;
assert(num_registers < lengthof(textref_stack));
this->textref_stack_grffile = grffile;
this->textref_stack_size = num_registers;
for (uint i = 0; i < num_registers; i++) {
textref_stack[i] = _temp_store.GetValue(0x100 + i);
}
}
|