2011-12-07 12:50:37 -07:00
|
|
|
|
/*
|
|
|
|
|
https://github.com/peterix/dfhack
|
2012-09-29 20:03:37 -06:00
|
|
|
|
Copyright (c) 2009-2012 Petr Mr<EFBFBD>zek (peterix@gmail.com)
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
|
distribution.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
GRAPHIC
|
|
|
|
|
Changing tile cache
|
|
|
|
|
*******************************************************************************/
|
|
|
|
|
#pragma once
|
|
|
|
|
#ifndef CL_MOD_GRAPHIC
|
|
|
|
|
#define CL_MOD_GRAPHIC
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-12-31 04:48:42 -07:00
|
|
|
|
#include "Export.h"
|
|
|
|
|
#include "Module.h"
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
|
|
|
|
namespace DFHack
|
|
|
|
|
{
|
2012-11-16 14:33:36 -07:00
|
|
|
|
// SDL stuff
|
|
|
|
|
typedef signed short SINT16;
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
int16_t x, y;
|
|
|
|
|
uint16_t w, h;
|
|
|
|
|
} DFSDL_Rect;
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
uint32_t flags;
|
|
|
|
|
void* format; // PixelFormat*
|
|
|
|
|
int w, h;
|
|
|
|
|
int pitch;
|
|
|
|
|
void* pixels;
|
|
|
|
|
void* userdata; // as far as i could see DF doesnt use this
|
|
|
|
|
int locked;
|
|
|
|
|
void* lock_data;
|
|
|
|
|
DFSDL_Rect clip_rect;
|
|
|
|
|
void* map;
|
|
|
|
|
int refcount;
|
|
|
|
|
} DFSDL_Surface;
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
2012-11-16 14:33:36 -07:00
|
|
|
|
// =========
|
|
|
|
|
struct DFTileSurface
|
|
|
|
|
{
|
|
|
|
|
bool paintOver; // draw over original tile?
|
|
|
|
|
DFSDL_Surface* surface; // from where it should be drawn
|
|
|
|
|
DFSDL_Rect* rect; // from which coords (NULL to draw whole surface)
|
|
|
|
|
DFSDL_Rect* dstResize; // if not NULL dst rect will be resized (x/y/w/h will be added to original dst)
|
|
|
|
|
};
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
|
|
|
|
|
2012-11-16 14:33:36 -07:00
|
|
|
|
class DFHACK_EXPORT Graphic : public Module
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Graphic();
|
|
|
|
|
~Graphic();
|
|
|
|
|
bool Finish()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
bool Register(DFTileSurface* (*func)(int,int));
|
|
|
|
|
bool Unregister(DFTileSurface* (*func)(int,int));
|
|
|
|
|
DFTileSurface* Call(int x, int y);
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
2012-11-16 14:33:36 -07:00
|
|
|
|
private:
|
|
|
|
|
struct Private;
|
|
|
|
|
Private *d;
|
|
|
|
|
};
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|