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"
|
2023-01-04 18:15:32 -07:00
|
|
|
|
#include "DFSDL.h"
|
2020-03-07 23:12:48 -07:00
|
|
|
|
#include <vector>
|
2011-12-07 12:50:37 -07:00
|
|
|
|
|
|
|
|
|
namespace DFHack
|
|
|
|
|
{
|
2012-11-16 14:33:36 -07:00
|
|
|
|
class DFHACK_EXPORT Graphic : public Module
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
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:
|
2020-03-07 23:12:48 -07:00
|
|
|
|
std::vector<DFTileSurface* (*)(int, int)> funcs;
|
2012-11-16 14:33:36 -07:00
|
|
|
|
};
|
2011-12-07 12:50:37 -07:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-12 12:48:19 -06:00
|
|
|
|
#endif
|