2003-08-15 18:00:22 +00:00
|
|
|
// Residual - Virtual machine to run LucasArts' 3D adventure games
|
2004-02-24 08:20:45 +00:00
|
|
|
// Copyright (C) 2003-2004 The ScummVM-Residual Team (www.scummvm.org)
|
2003-08-15 18:00:22 +00:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
2003-08-15 19:41:26 +00:00
|
|
|
#ifndef BITMAP_H
|
|
|
|
#define BITMAP_H
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2003-08-15 19:41:26 +00:00
|
|
|
#include "resource.h"
|
2003-08-15 18:00:22 +00:00
|
|
|
#include <cstring>
|
2003-08-20 10:30:07 +00:00
|
|
|
#include <SDL_opengl.h>
|
2003-08-15 18:00:22 +00:00
|
|
|
|
|
|
|
class Bitmap : public Resource {
|
|
|
|
public:
|
2004-02-24 08:20:45 +00:00
|
|
|
// Construct a bitmap from the given data.
|
|
|
|
Bitmap(const char *filename, const char *data, int len);
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
void draw() const;
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
// Set which image in an animated bitmap to use
|
|
|
|
void setNumber(int n) { curr_image_ = n; }
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
int numImages() const { return num_images_; }
|
|
|
|
int currentImage() const { return curr_image_; }
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
int width() const { return width_; }
|
|
|
|
int height() const { return height_; }
|
|
|
|
int x() const { return x_; }
|
|
|
|
int y() const { return y_; }
|
2003-08-15 18:00:22 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
char * getData() { return data_[curr_image_]; }
|
2003-08-30 17:58:33 +00:00
|
|
|
|
2004-02-24 08:20:45 +00:00
|
|
|
~Bitmap();
|
2003-08-15 18:00:22 +00:00
|
|
|
|
|
|
|
private:
|
2004-02-24 08:20:45 +00:00
|
|
|
char **data_;
|
|
|
|
int num_images_, curr_image_;
|
|
|
|
int width_, height_, x_, y_;
|
|
|
|
int format_;
|
|
|
|
int num_tex_;
|
|
|
|
GLuint *tex_ids_;
|
2004-03-22 21:48:30 +00:00
|
|
|
bool hasTransparency_;
|
2003-08-15 18:00:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|