diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-14 15:43:26 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-14 15:43:26 +0000 |
commit | b7170d13fd71fb624c06c4536974a7cd3f77591b (patch) | |
tree | 7f7583407e79423b08f98a50d897f6e30ac886dd /src/resources/image.h | |
parent | a120ea5cb0a57c9d3bd8677269bd65cf79dad933 (diff) | |
download | mana-client-b7170d13fd71fb624c06c4536974a7cd3f77591b.tar.gz mana-client-b7170d13fd71fb624c06c4536974a7cd3f77591b.tar.bz2 mana-client-b7170d13fd71fb624c06c4536974a7cd3f77591b.tar.xz mana-client-b7170d13fd71fb624c06c4536974a7cd3f77591b.zip |
Rewrote Spriteset to work with Image* instead of BITMAP*
Diffstat (limited to 'src/resources/image.h')
-rw-r--r-- | src/resources/image.h | 44 |
1 files changed, 30 insertions, 14 deletions
diff --git a/src/resources/image.h b/src/resources/image.h index 8f956324..0452cd4a 100644 --- a/src/resources/image.h +++ b/src/resources/image.h @@ -28,10 +28,9 @@ //#include <SDL/SDL.h> #include <allegro.h> -/** - * A clipped version of a larger image. - */ +// Forward declarations class SubImage; +class ScaledImage; /** * Defines a class for loading and storing images. @@ -60,24 +59,29 @@ class Image : public Resource /** * Frees the resources created by SDL. */ - void unload(); + virtual void unload(); /** * Returns the width of the image. */ - int getWidth(); + virtual int getWidth() const; /** * Returns the height of the image. */ - int getHeight(); + virtual int getHeight() const; /** * Creates a new image with the desired clipping rectangle. * @return <code>NULL</code> if creation failed and a valid * object otherwise. */ - Image* createSubImage(int x, int y, int width, int height); + virtual Image* getSubImage(int x, int y, int width, int height); + + /** + * Creates a scaled version of this image. + */ + virtual Image* getScaledInstance(int width, int height); /** * Blits the internal image onto the screen. @@ -85,12 +89,12 @@ class Image : public Resource * @return <code>true</code> if the image was blitted properly * <code>false</code> otherwise. */ - bool draw(BITMAP *screen, int x, int y); + virtual bool draw(BITMAP *screen, int x, int y); /** * Does a pattern fill on the given area. */ - void drawPattern(BITMAP *screen, int x, int y, int w, int h); + virtual void drawPattern(BITMAP *screen, int x, int y, int w, int h); protected: //SDL_Rect screenRect; @@ -117,11 +121,6 @@ class SubImage : public Image ~SubImage(); /** - * Redefines unload to not do anything. - */ - void unload(); - - /** * Draws the clipped image onto the screen. * @return <code>true</code> if drawing was succesful * <code>false</code> otherwise. @@ -138,4 +137,21 @@ class SubImage : public Image //unsigned int referenceCount; }; +/** + * A scaled version of an image. + */ +class ScaledImage : public Image +{ + public: + /** + * Constructor. + */ + ScaledImage(Image *parent, BITMAP *image, int width, int height); + + /** + * Destructor. + */ + ~ScaledImage(); +}; + #endif |