Fixes for datatype size on amd64.
[crack-attack.git] / src / GarbageFlavorImage.h
blob2429902c8e0b8ddc2aa05a3e52a1a79ec98c25fb
1 /*
2 * GarbageFlavorImage.h
3 * Daniel Nelson - 8/24/0
5 * Copyright (C) 2000 Daniel Nelson
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 * Daniel Nelson - aluminumangel.org
22 * 174 W. 18th Ave.
23 * Columbus, OH 43210
26 #ifndef GARBAGEFLAVORIMAGE_H
27 #define GARBAGEFLAVORIMAGE_H
29 #include <GL/glut.h>
31 #include "glext.h"
34 #include "Displayer.h"
35 #include "Garbage.h"
36 #include "Random.h"
38 /* static */ class GarbageFlavorImage {
39 public:
40 static void initialize ( );
42 static bool personalGarbageFlavorImageExists ( );
43 static GLubyte *loadPersonalGarbageFlavorImage ( );
44 static void handleNetworkGarbageFlavorImage ( GLubyte *texture );
46 static void buildGarbageTextureFileName ( char file_name[256],
47 const char *dir_name, int n );
48 static void buildGarbageTextureFileName ( char file_name[256], int n );
49 static void buildOriginalGarbageTextureFileName ( char file_name[256],
50 int n );
52 static void requestGarbageFlavorImage_inline_split_ ( Garbage &garbage );
54 static inline void requestGarbageFlavorImage ( Garbage &garbage )
56 if (garbage.height < DC_MIN_FLAVOR_GARBAGE_LENGTH) return;
57 if (associated_garbage_id != -1) return;
58 if (!Random::number(DC_CHANCE_NO_GARBAGE_FLAVOR)) return;
60 requestGarbageFlavorImage_inline_split_(garbage);
63 static inline void notifyGarbageDestruction ( Garbage &garbage )
65 if (garbage.id == associated_garbage_id)
66 associated_garbage_id = -1;
69 static int current_texture;
70 static int associated_garbage_id;
71 static int x, y;
72 static bool network_texture;
75 #endif