-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdefinitions.h
59 lines (50 loc) · 2.71 KB
/
definitions.h
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
int itemBlocksId[1000], qntdItemBlocks = 0;
int coinsId[1000], qntdCoins = 0;
int enemiesId[1000], qntdEnemies = 0;
int qntdAtualBlocos = 0;
#define URI_BRICK "resources/Sprites/Misc/Tileset/brickMarrom.png"
#define URI_COIN "resources/Sprites/Misc/coin.png"
#define URI_GOOMBA "resources/Sprites/Enemies/Goomba/Goomba.png"
#define URI_MUSHROOM "resources/Sprites/mushroom.png"
#define URI_QUESTION_BLOCK "resources/Sprites/Misc/Special_Blocks/Block_Interrogation/blockInterrogationUnused.png"
#define URI_SOLID_BLOCK "resources/Sprites/solidblock.png"
#define URI_TelaInicial "resources/Sprites/Misc/Logo.png"
#define URI_TelaPause "resources/Sprites/Misc/TelaPause.png"
#define URI_TelaInicialPressStart "resources/Sprites/Misc/Press Enter.png"
#define URI_TelaSelecaoLevel "resources/Sprites/Misc/Mapa/Mapa.png"
#define URI_TelaSelecaoLevelStatus1 "resources/Sprites/Misc/Mapa/Mapa-base-Disponivel.png"
#define URI_TelaSelecaoLevelStatus2 "resources/Sprites/Misc/Mapa/Mapa-base-Passado.png"
#define URI_MarioSelecaolevel "resources/Sprites/Misc/Mapa/Mapa-Mario.png"
#define URI_TelaInicialCursor "resources/Sprites/Misc/Items/cogumelo.png"
#define URI_MapaArvoreCoords "resources/Sprites/Misc/Mapa/arvore coords.txt"
#define URI_MapaLevelsLiberados "resources/Sprites/Misc/Mapa/levelPassados.txt"
#define URI_Ranking "resources/Sprites/Misc/ranking.txt"
#define URI_TelaRanking "resources/Sprites/Misc/TelaRanking.png"
#define URI_ThemeSong "resources/sounds/themeSong1-1.ogg"
#define URI_TelaInicialSong "resources/sounds/menuSong.ogg"
#define URI_JumpSound "resources/sounds/jumpSound.ogg"
#define URI_BreakBlockSound "resources/sounds/breakBlockSound.ogg"
#define URI_CoinSound "resources/sounds/coinSound.ogg"
#define URI_PauseSound "resources/sounds/pauseSound.ogg"
#define URI_StompSound "resources/sounds/stomp.ogg"
#define URI_DEATH_SOUND "resources/sounds/mariodie.ogg"
#define URI_TroSound "resources/sounds/tro.ogg"
#define URI_OneUpSound "resources/sounds/oneup.ogg"
#define URI_GameOverSound "resources/sounds/gameOverSound.ogg"
#define URI_PowerUp "resources/sounds/powerup.ogg"
#define tempoMaxVoltaNoTempo 10
#define URI_FONT "resources/fonts/SuperMario.ttf"
#define URI_BLOCK "resources/Sprites/brickMarrom.png"
#define URI_MARIO "resources/Sprites/Mario/Mario.png"
#define URI_MarioImgVoltandoPequeno "resources/Sprites/Mario/Mario-Tempo-Pequeno.png"
#define URI_MarioImgVoltandoGrande "resources/Sprites/Mario/Mario-Tempo-Grande.png"
#define URI_MARIO_DEAD "resources/Sprites/Mario/Mario-Dead.png"
#define URI_BIG_MARIO "resources/Sprites/Mario/bigmario.png"
#define URI_BG "resources/Sprites/Background/1/bg1-1.png"
#define CHAO 60
#define BRICK 1
#define COIN 2
#define GOOMBA 3
#define QUESTION_BLOCK 4
#define MUSHROOM 5
#define TENCOINS 6