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
|
/* Definitions of all the task types in Xconq.
Copyright (C) 1993, 1994, 1995, 1996 Stanley T. Shebs.
Xconq 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; either version 2, or (at your option)
any later version. See the file COPYING. */
DEF_TASK("none", TASK_NONE, "", do_none_task)
/* In alphabetical order... */
DEF_TASK("build", TASK_BUILD, "uUnn", do_build_task)
DEF_TASK("capture", TASK_CAPTURE, "xyuS", do_capture_task)
DEF_TASK("disband", TASK_DISBAND, "", do_disband_task)
DEF_TASK("do-action", TASK_DO_ACTION, "na****", do_action_task)
DEF_TASK("hit-position", TASK_HIT_POSITION, "xyz", do_hit_position_task)
DEF_TASK("hit-unit", TASK_HIT_UNIT, "xyuS", do_hit_unit_task)
DEF_TASK("move-dir", TASK_MOVE_DIR, "dn", do_move_dir_task)
DEF_TASK("move-to", TASK_MOVE_TO, "xyznc", do_move_to_task)
DEF_TASK("occupy", TASK_OCCUPY, "Uc", do_occupy_task)
DEF_TASK("pickup", TASK_PICKUP, "U", do_pickup_task)
DEF_TASK("produce", TASK_PRODUCE, "mnn", do_produce_task)
DEF_TASK("repair", TASK_REPAIR, "U", do_repair_task)
DEF_TASK("research", TASK_RESEARCH, "un", do_research_task)
DEF_TASK("resupply", TASK_RESUPPLY, "mU", do_resupply_task)
DEF_TASK("sentry", TASK_SENTRY, "n", do_sentry_task)
|