1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Update comments to english

This commit is contained in:
Mathieu Schroeter 2017-10-04 07:06:12 +02:00
parent c099ccb9e2
commit b9ab6272f8

View File

@ -23,50 +23,50 @@
#include <SDL2/SDL_stdinc.h> #include <SDL2/SDL_stdinc.h>
// clang-format off // clang-format off
#define _INTRO true // true si images d'introduction #define _INTRO true // true for init screen
#define SCRFACTOR 4 / 3 #define SCRFACTOR 4 / 3
#define LXIMAGE (480 * SCRFACTOR + (480 * SCRFACTOR) % 2) // dimensions de la fenêtre de jeu #define LXIMAGE (480 * SCRFACTOR + (480 * SCRFACTOR) % 2) // window size
#define LYIMAGE 480 #define LYIMAGE 480
#define POSDRAWX 144 // surface de dessin #define POSDRAWX 144 // draw surface
#define POSDRAWY 15 #define POSDRAWY 15
#define DIMDRAWX (LXIMAGE - (640 - 480)) #define DIMDRAWX (LXIMAGE - (640 - 480))
#define DIMDRAWY 450 #define DIMDRAWY 450
#define POSMAPX 8 // surface pour la carte #define POSMAPX 8 // map surface
#define POSMAPY 15 #define POSMAPY 15
#define DIMMAPX 128 #define DIMMAPX 128
#define DIMMAPY 128 #define DIMMAPY 128
#define MAXCELX 200 // nb max de cellules d'un monde #define MAXCELX 200 // max cells for a world
#define MAXCELY 200 #define MAXCELY 200
#define DIMCELX 60 // dimensions d'une cellule (décor) #define DIMCELX 60 // cell size (decor)
#define DIMCELY 30 #define DIMCELY 30
#define DIMOBJX 120 // dimensions d'un objet #define DIMOBJX 120 // object size
#define DIMOBJY 120 #define DIMOBJY 120
#define DIMBLUPIX 60 // dimensions de blupi #define DIMBLUPIX 60 // Blupi size
#define DIMBLUPIY 60 #define DIMBLUPIY 60
#define SHIFTBLUPIY 5 // petit décalage vers le haut #define SHIFTBLUPIY 5 // shift on top
#define DIMBUTTONX 40 // dimensions d'un button #define DIMBUTTONX 40 // button size
#define DIMBUTTONY 40 #define DIMBUTTONY 40
#define DIMJAUGEX 124 // dimensions de la jauge #define DIMJAUGEX 124 // progress size
#define DIMJAUGEY 22 #define DIMJAUGEY 22
#define POSSTATX 12 // statistiques #define POSSTATX 12 // statistics
#define POSSTATY 220 #define POSSTATY 220
#define DIMSTATX 60 #define DIMSTATX 60
#define DIMSTATY 30 #define DIMSTATY 30
#define DIMTEXTX 16 // dimensions max d'un caractère #define DIMTEXTX 16 // max char size
#define DIMTEXTY 16 #define DIMTEXTY 16
#define DIMLITTLEX 16 // dimensions max d'un petit caractère #define DIMLITTLEX 16 // max small char size
#define DIMLITTLEY 12 #define DIMLITTLEY 12
#define CHBACK 0 #define CHBACK 0