X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FSprite.cpp;h=1b858308b46d0f47f3c536a3f0baa5aea7734b49;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=67deeefbbfb67edb69435069b5485636bc2295f3;hpb=5421c812b9fc64371c7f8ce3886b0b091eef458f;p=l2e.git diff --git a/src/graphics/Sprite.cpp b/src/graphics/Sprite.cpp index 67deeef..1b85830 100644 --- a/src/graphics/Sprite.cpp +++ b/src/graphics/Sprite.cpp @@ -1,25 +1,58 @@ -/* - * Sprite.cpp - * - * Created on: Aug 5, 2012 - * Author: holy - */ - #include "Sprite.h" +#include "../loader/Interpreter.h" +#include "../loader/TypeDescription.h" + +using math::Vector; +using loader::FieldDescription; +using loader::Interpreter; +using loader::TypeDescription; + namespace graphics { -void Sprite::Draw(SDL_Surface *dest, int x, int y, int col, int row) const { +void Sprite::Draw(SDL_Surface *dest, const Vector &position, int col, int row) const { SDL_Rect srcRect, destRect; - srcRect.x = col * Width(); - srcRect.y = row * Height(); + srcRect.x = offset.X() + col * Width(); + srcRect.y = offset.Y() + row * Height(); srcRect.w = Width(); srcRect.h = Height(); - destRect.x = x; - destRect.y = y; - destRect.w = Width(); - destRect.h = Height(); - SDL_BlitSurface(surface, &srcRect, dest, &destRect); + destRect.x = position.X(); + destRect.y = position.Y(); + if (surface) { + SDL_BlitSurface(surface, &srcRect, dest, &destRect); + } else { + destRect.w = Width(); + destRect.h = Height(); + bool red(true); + while (destRect.w > 1 && destRect.h > 1) { + SDL_FillRect(dest, &destRect, SDL_MapRGB(dest->format, red ? 0xFF : 0, 0, 0)); + ++destRect.x; + ++destRect.y; + destRect.w -= 2; + destRect.h -= 2; + red = !red; + } + } +} + + +void Sprite::CreateTypeDescription() { + Sprite s; + + TypeDescription &td(TypeDescription::Create(TYPE_ID, "Sprite")); + td.SetDescription( + "An image + a size and offset.\n" + "The resulting section or a section offset by a multiple of its size can be drawn."); + td.SetConstructor(&Construct); + td.SetSize(sizeof(Sprite)); + + td.AddField("image", FieldDescription(((char *)&s.surface) - ((char *)&s), Interpreter::IMAGE_ID).SetReferenced().SetDescription("the image to cut this sprite from")); + td.AddField("size", FieldDescription(((char *)&s.size) - ((char *)&s), Interpreter::VECTOR_ID).SetDescription("dimensions of the sprite")); + td.AddField("offset", FieldDescription(((char *)&s.offset) - ((char *)&s), Interpreter::VECTOR_ID).SetDescription("offset into the image, top-left corner of the sprite's (0,0) clip")); +} + +void Sprite::Construct(void *data) { + new (data) Sprite; } }