#pragma once #include "ifdefs.h" #include #ifndef CONST_H #define CONST_H // Textos #define WINDOW_CAPTION "Volcano (@2016,2021 JailDesigner v0.5)" const Uint8 GAME_SPEED = 24; //16 = normal-rapido, 24 = normal. Cuanto mas pequeño, más rápido const Uint8 UP = 0; const Uint8 DOWN = 2; const Uint8 RIGHT = 1; const Uint8 LEFT = 3; const Uint8 NONE = 4; const Uint8 MAP_TILE_HEIGHT = 16; const Uint8 MAP_TILE_WIDTH = 16; const Uint8 ROOM_WIDTH_IN_TILES = 20; const Uint8 ROOM_HEIGHT_IN_TILES = 14; const Uint16 GAME_WINDOW_WIDTH = 320; const Uint16 GAME_WINDOW_HEIGHT = 234; const Uint8 TEST_ROOM = 118; const Uint8 STARTING_ROOM = 161; //TEST_ROOM; const Uint8 STARTING_PLAYER_TILE_X = 5; const Uint8 STARTING_PLAYER_TILE_Y = 11; const Uint8 ENEMY_HITBOX_REDUCTION = 4; const Uint8 COOLDOWN_TIME = 50; const Uint8 GRAVITY = 1; const Uint8 MAX_SPEED_Y = 5; const Uint8 BASE_SPEED = 1; const Uint8 MAX_SPEED = 8; const Uint8 RATIO_SPEED = 8; const Uint8 DROP_TIMER = 100; const Uint8 TOP_COLLISION = 0; const Uint8 BOTTOM_COLLISION = 1; const Uint8 LEFT_COLLISION = 2; const Uint8 RIGHT_COLLISION = 3; const Uint8 NO_COLLISION = 4; const Uint8 MAX_ACTORS = 50; const Uint8 KIND_FLYING_ENEMY = 0; const Uint8 KIND_COIN = 1; const Uint8 KIND_HEART = 2; const Uint8 KIND_STATIC_ENEMY = 3; const Uint8 KIND_MOBILE_PLATFORM = 4; const Uint8 KIND_WALKING_ENEMY = 5; const Uint8 KIND_DROP_GENERATOR = 6; const Uint8 KIND_DROP_ENEMY = 7; const Uint8 KIND_DROP_SPLAT = 8; const Uint8 KIND_SPEED_ENEMY = 9; const Uint8 KIND_KEY = 10; const Uint8 KIND_LOCK = 11; const Uint8 CODE_ENEMY_V1U = 208; const Uint8 CODE_ENEMY_V2U = 209; const Uint8 CODE_ENEMY_V3U = 210; const Uint8 CODE_ENEMY_V1D = 211; const Uint8 CODE_ENEMY_V2D = 212; const Uint8 CODE_ENEMY_V3D = 213; const Uint8 CODE_ENEMY_H1L = 214; const Uint8 CODE_ENEMY_H2L = 215; const Uint8 CODE_ENEMY_H3L = 216; const Uint8 CODE_ENEMY_H1R = 217; const Uint8 CODE_ENEMY_H2R = 218; const Uint8 CODE_ENEMY_H3R = 219; const Uint8 CODE_ENEMY_W1L = 224; const Uint8 CODE_ENEMY_W2L = 225; const Uint8 CODE_ENEMY_W3L = 226; const Uint8 CODE_ENEMY_W1R = 227; const Uint8 CODE_ENEMY_W2R = 228; const Uint8 CODE_ENEMY_W3R = 229; const Uint8 CODE_ENEMY_DRP = 230; const Uint8 CODE_ENEMY_SPL = 231; const Uint8 CODE_ENEMY_SPR = 232; const Uint8 CODE_COIN = 240; const Uint8 CODE_HEART = 241; const Uint8 CODE_KEY_RED = 242; const Uint8 CODE_LOCK_RED = 243; const Uint8 CODE_KEY_BLUE = 244; const Uint8 CODE_LOCK_BLUE = 245; const Uint8 CODE_KEY_GREEN = 246; const Uint8 CODE_LOCK_GREEN = 247; const Uint8 CODE_KEY_YELLOW = 248; const Uint8 CODE_LOCK_YELLOW = 249; const Uint8 MAX_ANIMATED_TILES = 200; const Uint8 TILE_BACKGROUND = 0; const Uint8 TILE_PLATFORM = 1; const Uint8 TILE_KILLING_PLATFORM = 2; const Uint8 TILE_ACTOR = 3; const Uint8 TILE_TRAVESABLE_PLATFORM = 4; const Uint8 PLAYER_ANIMATION_STANDING_LEFT = 0; const Uint8 PLAYER_ANIMATION_STANDING_RIGHT = 1; const Uint8 PLAYER_ANIMATION_WALKING_LEFT = 2; const Uint8 PLAYER_ANIMATION_WALKING_RIGHT = 3; const Uint8 PLAYER_ANIMATION_JUMPING_LEFT = 4; const Uint8 PLAYER_ANIMATION_JUMPING_RIGHT = 5; const Uint8 PLAYER_ANIMATION_DYING_LEFT = 6; const Uint8 PLAYER_ANIMATION_DYING_RIGHT = 7; const Uint8 SECTION_MENU = 0; const Uint8 SECTION_GAME = 1; const Uint8 SECTION_QUIT = 2; const Uint8 MENU_SECTION_MAIN = 0; const Uint8 MENU_SECTION_CREDITS = 1; const Uint8 MENU_SECTION_ANIMATION = 2; const Uint8 ZONE_SURFACE = 0; const Uint8 ZONE_VOLCANO = 1; // Recursos const Uint8 FILE_MAP_VOLCANO = 0; const Uint8 FILE_CONFIG = 1; const Uint8 TOTAL_FILE = 2; const Uint8 TEXTURE_ACTORS = 0; const Uint8 TEXTURE_BKG_SURFACE = 1; const Uint8 TEXTURE_FILTER = 2; const Uint8 TEXTURE_HUD = 3; const Uint8 TEXTURE_MENU = 4; const Uint8 TEXTURE_MENU_ANIMATION = 5; const Uint8 TEXTURE_PLAYER = 6; const Uint8 TEXTURE_TILES_SURFACE = 7; const Uint8 TEXTURE_TILES_VOLCANO = 8; const Uint8 TOTAL_TEXTURE = 9; const Uint8 SOUND_COIN = 0; const Uint8 SOUND_DEATH = 1; const Uint8 SOUND_DROP_ENEMY = 2; const Uint8 SOUND_DROP_SPLAT = 3; const Uint8 SOUND_JUMP = 4; const Uint8 SOUND_MENU_LOGO = 5; const Uint8 SOUND_MENU_START = 6; const Uint8 TOTAL_SOUND = 7; const Uint8 MUSIC_MENU = 0; const Uint8 MUSIC_SURFACE = 1; const Uint8 MUSIC_VOLCANO = 2; const Uint8 TOTAL_MUSIC = 3; ///////////////////////////////COFFEE CRISIS////////////////////////////////////////////// // Tamaño de bloque const Uint8 BLOCK = 8; const Uint8 HALF_BLOCK = BLOCK / 2; // Tamaño de la pantalla real const int SCREEN_WIDTH = 320; const int SCREEN_HEIGHT = SCREEN_WIDTH * 3 / 4; // 240 // Tamaño de la pantalla que se muestra const int VIEW_WIDTH = SCREEN_WIDTH * 3; // 960 const int VIEW_HEIGHT = SCREEN_HEIGHT * 3; // 720 // Cantidad de enteros a escribir en los ficheros de datos const Uint8 TOTAL_SCORE_DATA = 3; const Uint16 TOTAL_DEMO_DATA = 2000; // Zona de juego const int PLAY_AREA_TOP = (0 * BLOCK); const int PLAY_AREA_BOTTOM = SCREEN_HEIGHT - (4 * BLOCK); const int PLAY_AREA_LEFT = (0 * BLOCK); const int PLAY_AREA_RIGHT = SCREEN_WIDTH - (0 * BLOCK); const int PLAY_AREA_WIDTH = PLAY_AREA_RIGHT - PLAY_AREA_LEFT; const int PLAY_AREA_HEIGHT = PLAY_AREA_BOTTOM - PLAY_AREA_TOP; const int PLAY_AREA_CENTER_X = PLAY_AREA_LEFT + (PLAY_AREA_WIDTH / 2); const int PLAY_AREA_CENTER_Y = PLAY_AREA_TOP + (PLAY_AREA_HEIGHT / 2); const int PLAY_AREA_FIRST_QUARTER_Y = PLAY_AREA_HEIGHT / 4; const int PLAY_AREA_THIRD_QUARTER_Y = (PLAY_AREA_HEIGHT / 4) * 3; // Anclajes de pantalla const int SCREEN_CENTER_X = SCREEN_WIDTH / 2; const int SCREEN_FIRST_QUARTER_X = SCREEN_WIDTH / 4; const int SCREEN_THIRD_QUARTER_X = (SCREEN_WIDTH / 4) * 3; const int SCREEN_CENTER_Y = SCREEN_HEIGHT / 2; const int SCREEN_FIRST_QUARTER_Y = SCREEN_HEIGHT / 4; const int SCREEN_THIRD_QUARTER_Y = (SCREEN_HEIGHT / 4) * 3; // Color transparente para los sprites const Uint8 COLOR_KEY_R = 0xff; const Uint8 COLOR_KEY_G = 0x00; const Uint8 COLOR_KEY_B = 0xff; // Opciones de menu const int MENU_NO_OPTION = -1; const int MENU_OPTION_START = 0; const int MENU_OPTION_QUIT = 1; const int MENU_OPTION_TOTAL = 2; // Selector de menu const int MENU_SELECTOR_BLACK = (BLOCK * 0); const int MENU_SELECTOR_WHITE = (BLOCK * 1); // Tipos de fondos para el menu const int MENU_BACKGROUND_TRANSPARENT = 0; const int MENU_BACKGROUND_SOLID = 1; // Estados del jugador const Uint8 PLAYER_STATUS_WALKING_LEFT = 0; const Uint8 PLAYER_STATUS_WALKING_RIGHT = 1; const Uint8 PLAYER_STATUS_WALKING_STOP = 2; const Uint8 PLAYER_STATUS_FIRING_UP = 0; const Uint8 PLAYER_STATUS_FIRING_LEFT = 1; const Uint8 PLAYER_STATUS_FIRING_RIGHT = 2; const Uint8 PLAYER_STATUS_FIRING_NO = 3; const Uint8 PLAYER_ANIMATION_LEGS_WALKING_LEFT = 0; const Uint8 PLAYER_ANIMATION_LEGS_WALKING_RIGHT = 1; const Uint8 PLAYER_ANIMATION_LEGS_WALKING_STOP = 2; const Uint8 PLAYER_ANIMATION_BODY_WALKING_LEFT = 0; const Uint8 PLAYER_ANIMATION_BODY_FIRING_LEFT = 1; const Uint8 PLAYER_ANIMATION_BODY_WALKING_RIGHT = 2; const Uint8 PLAYER_ANIMATION_BODY_FIRING_RIGHT = 3; const Uint8 PLAYER_ANIMATION_BODY_WALKING_STOP = 4; const Uint8 PLAYER_ANIMATION_BODY_FIRING_UP = 5; const Uint8 PLAYER_ANIMATION_BODY_WALKING_LEFT_EXTRA_HIT = 6; const Uint8 PLAYER_ANIMATION_BODY_FIRING_LEFT_EXTRA_HIT = 7; const Uint8 PLAYER_ANIMATION_BODY_WALKING_RIGHT_EXTRA_HIT = 8; const Uint8 PLAYER_ANIMATION_BODY_FIRING_RIGHT_EXTRA_HIT = 9; const Uint8 PLAYER_ANIMATION_BODY_WALKING_STOP_EXTRA_HIT = 10; const Uint8 PLAYER_ANIMATION_BODY_FIRING_UP_EXTRA_HIT = 11; // Variables del jugador const Uint16 PLAYER_INVULNERABLE_TIMER = 200; // Estados del juego const Uint8 GAME_SECTION_TITLE = 0; const Uint8 GAME_SECTION_PLAYING = 1; const Uint8 GAME_SECTION_QUIT = 2; const Uint8 GAME_SECTION_GAME_OVER_SCREEN = 3; const Uint8 GAME_SECTION_INTRO = 4; const Uint8 GAME_SECTION_DEMO = 5; const Uint8 GAME_SECTION_INSTRUCTIONS = 6; const Uint8 GAME_SECTION_LOGO = 7; const Uint8 GAME_SECTION_INIT = 8; // Estados de cada elemento que pertenece a un evento const Uint8 EVENT_WAITING = 1; const Uint8 EVENT_RUNNING = 2; const Uint8 EVENT_COMPLETED = 3; // Cantidad de eventos de la intro const Uint8 INTRO_TOTAL_BITMAPS = 6; const Uint8 INTRO_TOTAL_TEXTS = 9; const Uint8 INTRO_TOTAL_EVENTS = INTRO_TOTAL_BITMAPS + INTRO_TOTAL_TEXTS; // Cantidad de eventos de la pantalla de titulo const Uint8 TITLE_TOTAL_EVENTS = 2; // Relaciones de Id con nomnbres const Uint8 BITMAP0 = 0; const Uint8 BITMAP1 = 1; const Uint8 BITMAP2 = 2; const Uint8 BITMAP3 = 3; const Uint8 BITMAP4 = 4; const Uint8 BITMAP5 = 5; const Uint8 TEXT0 = 6; const Uint8 TEXT1 = 7; const Uint8 TEXT2 = 8; const Uint8 TEXT3 = 9; const Uint8 TEXT4 = 10; const Uint8 TEXT5 = 11; const Uint8 TEXT6 = 12; const Uint8 TEXT7 = 13; const Uint8 TEXT8 = 14; // Anclajes para el marcador de puntos const int SCORE_WORD_X = (SCREEN_WIDTH / 4) - ((5 * BLOCK) / 2); const int SCORE_WORD_Y = SCREEN_HEIGHT - (3 * BLOCK) + 2; const int SCORE_NUMBER_X = (SCREEN_WIDTH / 4) - ((6 * BLOCK) / 2); const int SCORE_NUMBER_Y = SCREEN_HEIGHT - (2 * BLOCK) + 2; const int HISCORE_WORD_X = ((SCREEN_WIDTH / 4) * 3) - ((8 * BLOCK) / 2); const int HISCORE_WORD_Y = SCREEN_HEIGHT - (3 * BLOCK) + 2; const int HISCORE_NUMBER_X = ((SCREEN_WIDTH / 4) * 3) - ((6 * BLOCK) / 2); const int HISCORE_NUMBER_Y = SCREEN_HEIGHT - (2 * BLOCK) + 2; const int MULTIPLIER_WORD_X = (SCREEN_WIDTH / 2) - ((4 * BLOCK) / 2); const int MULTIPLIER_WORD_Y = SCREEN_HEIGHT - (3 * BLOCK) + 2; const int MULTIPLIER_NUMBER_X = (SCREEN_WIDTH / 2) - ((3 * BLOCK) / 2);; const int MULTIPLIER_NUMBER_Y = SCREEN_HEIGHT - (2 * BLOCK) + 2; // Ningun tipo const Uint8 NO_KIND = 0; // Tipos de globo const Uint8 BALLOON_1 = 1; const Uint8 BALLOON_2 = 2; const Uint8 BALLOON_3 = 3; const Uint8 BALLOON_4 = 4; // Velocidad del globo const float BALLON_VELX_POSITIVE = 0.7f; const float BALLON_VELX_NEGATIVE = -0.7f; // Indice para las animaciones de los globos const Uint8 BALLOON_MOVING_ANIMATION = 0; const Uint8 BALLOON_POP_ANIMATION = 1; const Uint8 BALLOON_BORN_ANIMATION = 2; // Cantidad posible de globos const Uint8 MAX_BALLOONS = 75; // Tipos de bala const Uint8 BULLET_UP = 1; const Uint8 BULLET_LEFT = 2; const Uint8 BULLET_RIGHT = 3; // Cantidad posible de globos const Uint8 MAX_BULLETS = 50; // Tipos de objetos const Uint8 ITEM_POINTS_1_DISK = 1; const Uint8 ITEM_POINTS_2_GAVINA = 2; const Uint8 ITEM_POINTS_3_PACMAR = 3; const Uint8 ITEM_CLOCK = 4; const Uint8 ITEM_TNT = 5; const Uint8 ITEM_COFFEE = 6; // Cantidad de objetos simultaneos const Uint8 MAX_ITEMS = 5; // Valores para las variables asociadas a los objetos const Uint8 REMAINING_EXPLOSIONS = 3; const Uint8 REMAINING_EXPLOSIONS_TIMER = 50; const Uint16 TIME_STOPPED_TIMER = 300; // Estados de entrada const Uint8 NO_INPUT = 0; const Uint8 INPUT_UP = 1; const Uint8 INPUT_DOWN = 2; const Uint8 INPUT_LEFT = 3; const Uint8 INPUT_RIGHT = 4; const Uint8 INPUT_ACCEPT = 5; const Uint8 INPUT_CANCEL = 6; const Uint8 INPUT_FIRE_UP = 7; const Uint8 INPUT_FIRE_LEFT = 8; const Uint8 INPUT_FIRE_RIGHT = 9; const Uint8 INPUT_PAUSE = 10; // Zona muerta del mando analógico const int JOYSTICK_DEAD_ZONE = 8000; // Tipos de mensajes para el retorno de las funciones const Uint8 MSG_OK = 0; const Uint8 MSG_BULLET_OUT = 1; // Tipos de texto const Uint8 TEXT_FIXED = 0; const Uint8 TEXT_VARIABLE = 1; // Cantidad de elementos del vector de SmartSprites const Uint8 MAX_SMART_SPRITES = 10; // Contadores const Uint16 TITLE_TIMER = 800; const Uint8 STAGE_COUNTER = 200; const Uint16 INSTRUCTIONS_COUNTER = 600; const Uint16 DEATH_COUNTER = 350; #endif