]> git.mxchange.org Git - quix0rs-blobwars.git/blob - src/CGraphics.h
1.17 Medal Support
[quix0rs-blobwars.git] / src / CGraphics.h
1 /*
2 Copyright (C) 2004 Parallel Realities
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 class Graphics {
22
23         private:
24
25                 Engine *engine;
26                 SDL_Rect gRect;
27                 TTF_Font *font[5];
28                 SDL_Color fontForeground, fontBackground;
29
30                 List spriteList;
31
32                 int fontSize;
33                 
34                 int waterAnim;
35                 int slimeAnim;
36                 int lavaAnim;
37
38                 int currentLoading;
39
40                 int screenShotNumber;
41                 char screenshot[100];
42                 char chatString[1024];
43                 
44                 SDL_Surface *medalMessage;
45                 int medalMessageTimer;
46                 int medalType;
47
48                 SDL_Surface *fadeBlack;
49                 SDL_Surface *infoMessage;
50
51         public:
52
53                 bool takeRandomScreenShots;
54
55                 SDL_Surface *screen, *background;
56                 SDL_Surface *tile[MAX_TILES];
57                 
58                 SDL_Surface *medal[4];
59                 
60                 SDL_Surface *infoBar;
61
62                 int red, yellow, green, darkGreen, skyBlue, blue, cyan, white, lightGrey, grey, darkGrey, black;
63
64         Graphics();
65         void free();
66         void destroy();
67         void registerEngine(Engine *engine);
68         void mapColors();
69         Sprite *getSpriteHead();
70         void setTransparent(SDL_Surface *sprite);
71         void updateScreen();
72         bool canShowMedalMessage();
73         void delay(int time);
74         void RGBtoHSV(float r, float g, float b, float *h, float *s, float *v);
75         void HSVtoRGB(float *r, float *g, float *b, float h, float s, float v);
76         SDL_Surface *loadImage(const char *filename);
77         SDL_Surface *loadImage(const char *filename, int hue, int sat, int value);
78         SDL_Surface *quickSprite(const char *name, SDL_Surface *image);
79         void fade(int amount);
80         void fadeToBlack();
81         void loadMapTiles(const char *baseDir);
82         void loadFont(int i, const char *filename, int pixelSize);
83         Sprite *addSprite(const char *name);
84         Sprite *getSprite(const char *name, bool required);
85         void animateSprites();
86         int getWaterAnim();
87         int getSlimeAnim();
88         int getLavaAnim();
89         int getLavaAnim(int current);
90         void loadBackground(const char *filename);
91         void putPixel(int x, int y, Uint32 pixel, SDL_Surface *dest);
92         Uint32 getPixel(SDL_Surface *surface, int x, int y);
93         void drawLine(float startX, float startY, float endX, float endY, int color, SDL_Surface *dest);
94         void blit(SDL_Surface *image, int x, int y, SDL_Surface *dest, bool centered);
95         void drawBackground();
96         void drawBackground(SDL_Rect *r);
97         void drawRect(int x, int y, int w, int h, int color, SDL_Surface *dest);
98         void drawRect(int x, int y, int w, int h, int color, int borderColor, SDL_Surface *dest);
99         void setFontColor(int red, int green, int blue, int red2, int green2, int blue2);
100         void setFontSize(int size);
101         SDL_Surface *getString(const char *in, bool transparent);
102         void drawString(const char *in, int x, int y, int alignment, SDL_Surface *dest);
103         void clearChatString();
104         void createChatString(const char *in);
105         void showMedalMessage(int type, const char *in);
106         void drawChatString(SDL_Surface *surface, int y);
107         void drawWidgetRect(int x, int y, int w, int h);
108         SDL_Surface *createSurface(int width, int height);
109         SDL_Surface *alphaRect(int width, int height, Uint8 red, Uint8 green, Uint8 blue);
110         void colorize(SDL_Surface *image, int red, int green, int blue);
111         void lock(SDL_Surface *surface);
112         void unlock(SDL_Surface *surface);
113         void resetLoading();
114         void showLoading(int amount, int max);
115         void showErrorAndExit(const char *error, const char *param);
116         void showLicenseErrorAndExit();
117         void showRootWarning();
118
119 };