1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
  
     | 
    
      #ifndef SDL_WINDOWMANAGER_H
#define SDL_WINDOWMANAGER_H
#ifdef USE_TILE
#ifdef USE_SDL
#include "windowmanager.h"
struct SDL_Surface;
struct SDL_VideoInfo;
class SDLWrapper : public WindowManager
{
public:
    SDLWrapper();
    ~SDLWrapper();
    // Class functions
    virtual int init(coord_def *m_windowsz);
    // Environment state functions
    virtual void set_window_title(const char *title);
    virtual bool set_window_icon(const char* icon_name);
    virtual key_mod get_mod_state() const;
    virtual void set_mod_state(key_mod mod);
    virtual int byte_order();
    // System time functions
    virtual void set_timer(unsigned int interval,
                           wm_timer_callback callback);
    virtual unsigned int get_ticks() const;
    virtual void delay(unsigned int ms);
    // Event functions
    virtual int raise_custom_event();
    virtual int wait_event(wm_event *event);
    virtual unsigned int get_event_count(wm_event_type type);
    // Display functions
    virtual void resize(coord_def &m_windowsz);
    virtual void swap_buffers();
    virtual int screen_width() const;
    virtual int screen_height() const;
    // Texture loading
    virtual bool load_texture(GenericTexture *tex, const char *filename,
                              MipMapOptions mip_opt, unsigned int &orig_width,
                              unsigned int &orig_height,
                              tex_proc_func proc = NULL,
                              bool force_power_of_two = true);
protected:
    // Helper functions
    SDL_Surface *load_image(const char *file) const;
    SDL_Surface *m_context;
    const SDL_VideoInfo* video_info;
};
#endif // USE_SDL
#endif // USE_TILE
#endif // SDL_WINDOWMANAGER_H
 
     |