- replaced a few char* with std::string
[supertux.git] / src / texture.h
1 //
2 // C Interface: texture
3 //
4 // Description: 
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #ifndef SUPERTUX_TEXTURE_H
14 #define SUPERTUX_TEXTURE_H
15
16 #include <string>
17
18 #include "SDL.h"
19 #ifndef NOOPENGL
20 #include "SDL_opengl.h"
21 #endif
22
23 /* Texture type */
24 typedef struct texture_type
25   {
26    SDL_Surface* sdl_surface;
27    unsigned gl_texture;
28    int w;
29    int h;
30   } texture_type;
31
32 void texture_setup(void);
33 extern void (*texture_load) (texture_type* ptexture, const std::string& file, int use_alpha);  
34 extern void (*texture_load_part) (texture_type* ptexture, const std::string& file, int x, int y, int w, int h, int use_alpha);
35 extern void (*texture_free) (texture_type* ptexture);  
36 extern void (*texture_draw) (texture_type* ptexture, float x, float y, int update);  
37 extern void (*texture_draw_bg) (texture_type* ptexture, int update);  
38 extern void (*texture_draw_part) (texture_type* ptexture, float sx, float sy, float x, float y, float w, float h, int update);
39 void texture_load_sdl(texture_type* ptexture, const std::string&, int use_alpha);
40 void texture_load_part_sdl(texture_type* ptexture, const std::string& file, int x, int y, int w, int h, int use_alpha);
41 void texture_free_sdl(texture_type* ptexture);
42 void texture_draw_sdl(texture_type* ptexture, float x, float y, int update);
43 void texture_draw_bg_sdl(texture_type* ptexture, int update);
44 void texture_draw_part_sdl(texture_type* ptexture,float sx, float sy, float x, float y, float w, float h, int update);
45 void texture_from_sdl_surface(texture_type* ptexture, SDL_Surface * sdl_surf, int use_alpha);
46 #ifndef NOOPENGL
47 void texture_load_gl(texture_type* ptexture, const std::string& file, int use_alpha);
48 void texture_load_part_gl(texture_type* ptexture, const std::string& file, int x, int y, int w, int h, int use_alpha);
49 void texture_free_gl(texture_type* ptexture);
50 void texture_draw_gl(texture_type* ptexture, float x, float y, int update);
51 void texture_draw_bg_gl(texture_type* ptexture, int update);
52 void texture_draw_part_gl(texture_type* ptexture, float sx, float sy, float x, float y, float w, float h, int update);
53 void texture_create_gl(SDL_Surface * surf, GLuint * tex);
54 #endif
55
56 #endif /*SUPERTUX_TEXTURE_H*/
57