Make autopackage work
[crack-attack.git] / src / GarbageFlavorImage.h
bloba3c1a15b82ab067a28d6aa1b0928e70b63111bc3
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 #ifndef _WIN32
32 #else
33 # include <glext.h>
34 #endif
36 using namespace std;
38 #include "Displayer.h"
39 #include "Garbage.h"
40 #include "Random.h"
42 /* static */ class GarbageFlavorImage {
43 public:
44 static void initialize ( );
46 static bool personalGarbageFlavorImageExists ( );
47 static GLubyte *loadPersonalGarbageFlavorImage ( );
48 static void handleNetworkGarbageFlavorImage ( GLubyte *texture );
50 static void buildGarbageTextureFileName ( char file_name[256],
51 const char *dir_name, int n );
52 static void buildGarbageTextureFileName ( char file_name[256], int n );
53 static void buildOriginalGarbageTextureFileName ( char file_name[256],
54 int n );
56 static void requestGarbageFlavorImage_inline_split_ ( Garbage &garbage );
58 static inline void requestGarbageFlavorImage ( Garbage &garbage )
60 if (garbage.height < DC_MIN_FLAVOR_GARBAGE_LENGTH) return;
61 if (associated_garbage_id != -1) return;
62 if (!Random::number(DC_CHANCE_NO_GARBAGE_FLAVOR)) return;
64 requestGarbageFlavorImage_inline_split_(garbage);
67 static inline void notifyGarbageDestruction ( Garbage &garbage )
69 if (garbage.id == associated_garbage_id)
70 associated_garbage_id = -1;
73 static int current_texture;
74 static int associated_garbage_id;
75 static int x, y;
76 static bool network_texture;
79 #endif