/* resource.h - Don Yang (uguu.org) 12/31/00 */ #ifndef RESOURCE_H__ #define RESOURCE_H__ #define APP_NAME "otika" #define APP_VERSION APP_NAME " 0.93 (12/31/00)" #define APP_AUTHOR "Don Yang (uguu.org)" #define ABOUT_STRING \ APP_VERSION " - " APP_AUTHOR "\n" \ __TIME__ " " __DATE__ "\n\n" \ "This program is free software; you can redistribute it and/or\n" \ "modify it under the terms of the GNU General Public License as\n" \ "published by the Free Software Foundation; either version 2 of\n" \ "the License, or any later version." #define HELP_STRING \ "Global keys\n\n" \ " Q\t\tQuit\n" \ " ESC\t\tMenu\n\n" \ "In game keys\n\n" \ " Left\t\tMove block left\n" \ " Right\t\tMove block right\n" \ " Up\t\tChange orientation\n" \ " Down\t\tDrop block\n\n" \ " P\t\tPause\n" \ " S\t\tSound\n\n" \ " R\t\tReset\n" \ " D\t\tRecapture desktop\n" \ " F\t\tRecalibrate frame rate\n" #define APP_ICON 100 #define APP_MENU 101 #define APP_MENU_ABOUT 200 #define APP_MENU_EXIT 201 #define APP_MENU_CAPTURE 202 #define APP_MENU_FRAMERATE 203 #define APP_MENU_PAUSE 204 #define APP_MENU_RESET 205 #define APP_MENU_CLEAR_HISTORY 206 #define APP_MENU_HELP 207 #define APP_MENU_NOISE 208 #define APP_MENU_TRANSPARENT 209 #define APP_MENU_TRANSLUCENT 210 #define APP_MENU_BACKGROUND 211 #define APP_MENU_FRACTAL 212 #define APP_MENU_DUST 213 #define APP_MENU_SWARM 214 #define APP_MENU_WHITE_PARTICLE 215 #define APP_MENU_JOYSTICK 216 #define SOUND_BLIP 300 #define SOUND_CLEAR 301 #define SOUND_SPECIAL 302 #endif