2013-06-21 13:47:23 -06:00
|
|
|
//original file from https://github.com/Baughn/Dwarf-Fortress--libgraphics-
|
2013-06-23 10:25:42 -06:00
|
|
|
#ifndef RENDERER_OPENGL_INCLUDED
|
|
|
|
#define RENDERER_OPENGL_INCLUDED
|
|
|
|
|
2013-06-22 04:29:58 -06:00
|
|
|
#include "tinythread.h"
|
|
|
|
#include "fast_mutex.h"
|
|
|
|
|
2013-06-21 13:47:23 -06:00
|
|
|
#include "Core.h"
|
|
|
|
#include <VTableInterpose.h>
|
|
|
|
#include "df/renderer.h"
|
|
|
|
#include "df/init.h"
|
|
|
|
#include "df/enabler.h"
|
|
|
|
#include "df/zoom_commands.h"
|
|
|
|
#include "df/texture_handler.h"
|
2013-06-21 18:45:42 -06:00
|
|
|
#include "df/graphic.h"
|
2013-06-25 05:03:01 -06:00
|
|
|
#include <math.h>
|
2014-05-06 12:59:11 -06:00
|
|
|
#include <cmath>
|
2013-06-21 13:47:23 -06:00
|
|
|
|
|
|
|
using df::renderer;
|
|
|
|
using df::init;
|
|
|
|
using df::enabler;
|
|
|
|
|
2013-06-21 18:45:42 -06:00
|
|
|
struct old_opengl:public renderer
|
2013-06-21 13:47:23 -06:00
|
|
|
{
|
2013-06-21 18:45:42 -06:00
|
|
|
void* sdlSurface;
|
|
|
|
int32_t dispx,dispy;
|
|
|
|
float *vertexes, *fg, *bg, *tex;
|
|
|
|
int32_t zoom_steps,forced_steps,natural_w,natural_h;
|
|
|
|
int32_t off_x,off_y,size_x,size_y;
|
2013-06-21 13:47:23 -06:00
|
|
|
};
|
2013-06-21 18:45:42 -06:00
|
|
|
struct renderer_wrap : public renderer {
|
|
|
|
private:
|
|
|
|
void set_to_null() {
|
|
|
|
screen = NULL;
|
|
|
|
screentexpos = NULL;
|
|
|
|
screentexpos_addcolor = NULL;
|
|
|
|
screentexpos_grayscale = NULL;
|
|
|
|
screentexpos_cf = NULL;
|
|
|
|
screentexpos_cbr = NULL;
|
|
|
|
screen_old = NULL;
|
|
|
|
screentexpos_old = NULL;
|
|
|
|
screentexpos_addcolor_old = NULL;
|
|
|
|
screentexpos_grayscale_old = NULL;
|
|
|
|
screentexpos_cf_old = NULL;
|
|
|
|
screentexpos_cbr_old = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void copy_from_inner() {
|
|
|
|
screen = parent->screen;
|
|
|
|
screentexpos = parent->screentexpos;
|
|
|
|
screentexpos_addcolor = parent->screentexpos_addcolor;
|
|
|
|
screentexpos_grayscale = parent->screentexpos_grayscale;
|
|
|
|
screentexpos_cf = parent->screentexpos_cf;
|
|
|
|
screentexpos_cbr = parent->screentexpos_cbr;
|
|
|
|
screen_old = parent->screen_old;
|
|
|
|
screentexpos_old = parent->screentexpos_old;
|
|
|
|
screentexpos_addcolor_old = parent->screentexpos_addcolor_old;
|
|
|
|
screentexpos_grayscale_old = parent->screentexpos_grayscale_old;
|
|
|
|
screentexpos_cf_old = parent->screentexpos_cf_old;
|
|
|
|
screentexpos_cbr_old = parent->screentexpos_cbr_old;
|
|
|
|
}
|
|
|
|
|
|
|
|
void copy_to_inner() {
|
|
|
|
parent->screen = screen;
|
|
|
|
parent->screentexpos = screentexpos;
|
|
|
|
parent->screentexpos_addcolor = screentexpos_addcolor;
|
|
|
|
parent->screentexpos_grayscale = screentexpos_grayscale;
|
|
|
|
parent->screentexpos_cf = screentexpos_cf;
|
|
|
|
parent->screentexpos_cbr = screentexpos_cbr;
|
|
|
|
parent->screen_old = screen_old;
|
|
|
|
parent->screentexpos_old = screentexpos_old;
|
|
|
|
parent->screentexpos_addcolor_old = screentexpos_addcolor_old;
|
|
|
|
parent->screentexpos_grayscale_old = screentexpos_grayscale_old;
|
|
|
|
parent->screentexpos_cf_old = screentexpos_cf_old;
|
|
|
|
parent->screentexpos_cbr_old = screentexpos_cbr_old;
|
2013-06-21 13:47:23 -06:00
|
|
|
}
|
|
|
|
public:
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_wrap(renderer* parent):parent(parent)
|
|
|
|
{
|
|
|
|
copy_from_inner();
|
2013-06-21 13:47:23 -06:00
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_tile(int32_t x, int32_t y) {
|
2013-06-21 13:47:23 -06:00
|
|
|
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->update_tile(x,y);
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_all() {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->update_all();
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void render() {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->render();
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void set_fullscreen() {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->set_fullscreen();
|
2014-05-11 05:19:02 -06:00
|
|
|
copy_from_inner();
|
2013-06-21 18:45:42 -06:00
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void zoom(df::zoom_commands z) {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->zoom(z);
|
2014-05-11 05:19:02 -06:00
|
|
|
copy_from_inner();
|
2013-06-21 18:45:42 -06:00
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void resize(int32_t w, int32_t h) {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->resize(w,h);
|
|
|
|
copy_from_inner();
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void grid_resize(int32_t w, int32_t h) {
|
2013-06-21 18:45:42 -06:00
|
|
|
copy_to_inner();
|
|
|
|
parent->grid_resize(w,h);
|
|
|
|
copy_from_inner();
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual ~renderer_wrap() {
|
2013-06-21 18:45:42 -06:00
|
|
|
df::global::enabler->renderer=parent;
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual bool get_mouse_coords(int32_t* x, int32_t* y) {
|
2013-06-21 18:45:42 -06:00
|
|
|
return parent->get_mouse_coords(x,y);
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual bool uses_opengl() {
|
2013-06-21 18:45:42 -06:00
|
|
|
return parent->uses_opengl();
|
|
|
|
};
|
2013-06-23 03:20:35 -06:00
|
|
|
void invalidateRect(int32_t x,int32_t y,int32_t w,int32_t h)
|
|
|
|
{
|
|
|
|
for(int i=x;i<x+w;i++)
|
|
|
|
for(int j=y;j<y+h;j++)
|
|
|
|
{
|
|
|
|
int index=i*df::global::gps->dimy + j;
|
2013-06-25 11:36:53 -06:00
|
|
|
screen_old[index*4]=screen[index*4]+1;//ensure tile is different
|
2013-06-23 03:20:35 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
void invalidate()
|
|
|
|
{
|
2013-06-25 11:36:53 -06:00
|
|
|
invalidateRect(0,0,df::global::gps->dimx,df::global::gps->dimy);
|
|
|
|
//df::global::gps->force_full_display_count++;
|
2013-06-23 03:20:35 -06:00
|
|
|
};
|
2013-06-21 13:47:23 -06:00
|
|
|
protected:
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer* parent;
|
2013-06-21 13:47:23 -06:00
|
|
|
};
|
2013-06-21 18:45:42 -06:00
|
|
|
struct renderer_trippy : public renderer_wrap {
|
|
|
|
private:
|
|
|
|
float rFloat()
|
|
|
|
{
|
|
|
|
return rand()/(float)RAND_MAX;
|
|
|
|
}
|
|
|
|
void colorizeTile(int x,int y)
|
|
|
|
{
|
|
|
|
const int tile = x*(df::global::gps->dimy) + y;
|
|
|
|
old_opengl* p=reinterpret_cast<old_opengl*>(parent);
|
|
|
|
float *fg = p->fg + tile * 4 * 6;
|
|
|
|
float *bg = p->bg + tile * 4 * 6;
|
|
|
|
float *tex = p->tex + tile * 2 * 6;
|
|
|
|
const float val=1/2.0;
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-06-21 18:45:42 -06:00
|
|
|
float r=rFloat()*val - val/2;
|
|
|
|
float g=rFloat()*val - val/2;
|
|
|
|
float b=rFloat()*val - val/2;
|
|
|
|
|
|
|
|
float backr=rFloat()*val - val/2;
|
|
|
|
float backg=rFloat()*val - val/2;
|
|
|
|
float backb=rFloat()*val - val/2;
|
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
*(fg++) += r;
|
|
|
|
*(fg++) += g;
|
|
|
|
*(fg++) += b;
|
|
|
|
*(fg++) = 1;
|
|
|
|
|
|
|
|
*(bg++) += backr;
|
|
|
|
*(bg++) += backg;
|
|
|
|
*(bg++) += backb;
|
|
|
|
*(bg++) = 1;
|
|
|
|
}
|
2013-06-21 13:47:23 -06:00
|
|
|
}
|
|
|
|
public:
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_trippy(renderer* parent):renderer_wrap(parent)
|
|
|
|
{
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_tile(int32_t x, int32_t y) {
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_wrap::update_tile(x,y);
|
|
|
|
colorizeTile(x,y);
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_all() {
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_wrap::update_all();
|
|
|
|
for (int x = 0; x < df::global::gps->dimx; x++)
|
|
|
|
for (int y = 0; y < df::global::gps->dimy; y++)
|
|
|
|
colorizeTile(x,y);
|
|
|
|
};
|
2013-06-21 13:47:23 -06:00
|
|
|
};
|
2013-06-22 05:14:35 -06:00
|
|
|
|
2013-06-30 06:05:59 -06:00
|
|
|
struct rgbf
|
2013-06-22 05:14:35 -06:00
|
|
|
{
|
|
|
|
float r,g,b;
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf():r(0),g(0),b(0)
|
2013-06-22 05:14:35 -06:00
|
|
|
{
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2013-06-22 05:14:35 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf(float r,float g,float b):r(r),g(g),b(b)
|
2013-06-22 05:14:35 -06:00
|
|
|
{
|
|
|
|
|
2013-06-23 15:05:03 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator-(const rgbf& cell) const
|
2013-06-23 15:05:03 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(r-cell.r,g-cell.g,b-cell.b);
|
2013-06-22 05:14:35 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator*(float val)const
|
2013-06-22 05:14:35 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(r*val,g*val,b*val);
|
2013-06-22 05:14:35 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator/(float val) const
|
2013-06-23 15:05:03 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(r/val,g/val,b/val);
|
2013-06-23 15:05:03 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator*(const rgbf& cell) const
|
2013-06-23 12:44:06 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(r*cell.r,g*cell.g,b*cell.b);
|
2013-06-23 12:44:06 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator*=(float val)
|
2013-06-27 07:11:29 -06:00
|
|
|
{
|
|
|
|
r*=val;
|
|
|
|
g*=val;
|
|
|
|
b*=val;
|
|
|
|
return *this;
|
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator*=(const rgbf& cell)
|
2013-06-23 12:44:06 -06:00
|
|
|
{
|
|
|
|
r*=cell.r;
|
|
|
|
g*=cell.g;
|
|
|
|
b*=cell.b;
|
2013-06-24 15:59:32 -06:00
|
|
|
return *this;
|
2013-06-23 12:44:06 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator+=(const rgbf& cell)
|
2013-06-27 07:11:29 -06:00
|
|
|
{
|
|
|
|
r+=cell.r;
|
|
|
|
g+=cell.g;
|
|
|
|
b+=cell.b;
|
|
|
|
return *this;
|
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf operator+(const rgbf& other) const
|
2013-06-22 05:14:35 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(r+other.r,g+other.g,b+other.b);
|
2013-06-22 05:14:35 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
bool operator<=(const rgbf& other) const
|
2013-06-23 11:45:05 -06:00
|
|
|
{
|
2013-06-26 15:14:03 -06:00
|
|
|
return r<=other.r && g<=other.g && b<=other.b;
|
2013-06-23 11:45:05 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
float dot(const rgbf& other) const
|
2013-06-24 15:59:32 -06:00
|
|
|
{
|
|
|
|
return r*other.r+g*other.g+b*other.b;
|
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf pow(const float exp) const
|
2013-06-25 05:03:01 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(std::pow(r, exp), std::pow(g, exp), std::pow(b, exp));
|
2013-06-25 05:03:01 -06:00
|
|
|
}
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf pow(const int exp) const
|
2013-06-25 05:03:01 -06:00
|
|
|
{
|
2013-06-30 06:05:59 -06:00
|
|
|
return rgbf(std::pow(r, exp), std::pow(g, exp), std::pow(b, exp));
|
2013-06-25 05:03:01 -06:00
|
|
|
}
|
2013-06-22 05:14:35 -06:00
|
|
|
};
|
2013-06-21 18:45:42 -06:00
|
|
|
struct renderer_test : public renderer_wrap {
|
|
|
|
private:
|
2013-06-22 04:29:58 -06:00
|
|
|
void colorizeTile(int x,int y)
|
|
|
|
{
|
|
|
|
const int tile = x*(df::global::gps->dimy) + y;
|
|
|
|
old_opengl* p=reinterpret_cast<old_opengl*>(parent);
|
|
|
|
float *fg = p->fg + tile * 4 * 6;
|
|
|
|
float *bg = p->bg + tile * 4 * 6;
|
|
|
|
float *tex = p->tex + tile * 2 * 6;
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf light=lightGrid[tile];
|
2013-06-22 04:29:58 -06:00
|
|
|
for (int i = 0; i < 6; i++) {
|
2013-06-22 05:14:35 -06:00
|
|
|
*(fg++) *= light.r;
|
|
|
|
*(fg++) *= light.g;
|
|
|
|
*(fg++) *= light.b;
|
2013-06-22 04:29:58 -06:00
|
|
|
*(fg++) = 1;
|
|
|
|
|
2013-06-22 05:14:35 -06:00
|
|
|
*(bg++) *= light.r;
|
|
|
|
*(bg++) *= light.g;
|
|
|
|
*(bg++) *= light.b;
|
2013-06-22 04:29:58 -06:00
|
|
|
*(bg++) = 1;
|
|
|
|
}
|
|
|
|
}
|
2013-06-22 05:14:35 -06:00
|
|
|
void reinitLightGrid(int w,int h)
|
2013-06-22 04:29:58 -06:00
|
|
|
{
|
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
2013-06-22 05:14:35 -06:00
|
|
|
lightGrid.resize(w*h);
|
2013-06-22 04:29:58 -06:00
|
|
|
}
|
2013-06-22 05:14:35 -06:00
|
|
|
void reinitLightGrid()
|
2013-06-22 04:29:58 -06:00
|
|
|
{
|
2013-06-22 05:14:35 -06:00
|
|
|
reinitLightGrid(df::global::gps->dimy,df::global::gps->dimx);
|
2013-06-22 04:29:58 -06:00
|
|
|
}
|
2013-06-21 18:45:42 -06:00
|
|
|
public:
|
2013-06-22 04:29:58 -06:00
|
|
|
tthread::fast_mutex dataMutex;
|
2013-06-30 06:05:59 -06:00
|
|
|
std::vector<rgbf> lightGrid;
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_test(renderer* parent):renderer_wrap(parent)
|
|
|
|
{
|
2013-06-22 05:14:35 -06:00
|
|
|
reinitLightGrid();
|
2013-06-21 18:45:42 -06:00
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_tile(int32_t x, int32_t y) {
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_wrap::update_tile(x,y);
|
2013-06-22 04:29:58 -06:00
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
|
|
|
colorizeTile(x,y);
|
2013-06-21 18:45:42 -06:00
|
|
|
//some sort of mutex or sth?
|
|
|
|
//and then map read
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_all() {
|
2013-06-21 18:45:42 -06:00
|
|
|
renderer_wrap::update_all();
|
2013-06-22 04:29:58 -06:00
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
|
|
|
for (int x = 0; x < df::global::gps->dimx; x++)
|
|
|
|
for (int y = 0; y < df::global::gps->dimy; y++)
|
|
|
|
colorizeTile(x,y);
|
2013-06-21 18:45:42 -06:00
|
|
|
//some sort of mutex or sth?
|
|
|
|
//and then map read
|
|
|
|
//same stuff for all of them i guess...
|
|
|
|
};
|
2014-05-11 05:19:02 -06:00
|
|
|
virtual void set_fullscreen()
|
|
|
|
{
|
|
|
|
renderer_wrap::set_fullscreen();
|
|
|
|
reinitLightGrid();
|
|
|
|
}
|
|
|
|
virtual void zoom(df::zoom_commands z)
|
|
|
|
{
|
|
|
|
renderer_wrap::zoom(z);
|
|
|
|
reinitLightGrid();
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void grid_resize(int32_t w, int32_t h) {
|
2013-06-22 04:29:58 -06:00
|
|
|
renderer_wrap::grid_resize(w,h);
|
2013-06-22 05:14:35 -06:00
|
|
|
reinitLightGrid(w,h);
|
2013-06-22 04:29:58 -06:00
|
|
|
};
|
|
|
|
virtual void resize(int32_t w, int32_t h) {
|
|
|
|
renderer_wrap::resize(w,h);
|
2013-06-22 05:14:35 -06:00
|
|
|
reinitLightGrid(w,h);
|
2013-06-22 04:29:58 -06:00
|
|
|
}
|
2013-06-22 08:40:52 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct rgba
|
|
|
|
{
|
|
|
|
float r,g,b,a;
|
|
|
|
};
|
|
|
|
struct renderer_lua : public renderer_wrap {
|
|
|
|
private:
|
|
|
|
void overwriteTile(int x,int y)
|
|
|
|
{
|
|
|
|
const int tile = xyToTile(x,y);
|
|
|
|
old_opengl* p=reinterpret_cast<old_opengl*>(parent);
|
|
|
|
float *fg = p->fg + tile * 4 * 6;
|
|
|
|
float *bg = p->bg + tile * 4 * 6;
|
|
|
|
float *tex = p->tex + tile * 2 * 6;
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf fm=foreMult[tile];
|
|
|
|
rgbf fo=foreOffset[tile];
|
2013-06-22 08:40:52 -06:00
|
|
|
|
2013-06-30 06:05:59 -06:00
|
|
|
rgbf bm=backMult[tile];
|
|
|
|
rgbf bo=backOffset[tile];
|
2013-06-22 08:40:52 -06:00
|
|
|
for (int i = 0; i < 6; i++) {
|
|
|
|
rgba* fore=reinterpret_cast<rgba*>(fg);
|
|
|
|
fore->r=fore->r*fm.r+fo.r;
|
|
|
|
fore->g=fore->g*fm.g+fo.g;
|
|
|
|
fore->b=fore->b*fm.b+fo.b;
|
|
|
|
|
|
|
|
fg+=4;
|
|
|
|
rgba* back=reinterpret_cast<rgba*>(bg);
|
|
|
|
back->r=back->r*bm.r+bo.r;
|
|
|
|
back->g=back->g*bm.g+bo.g;
|
|
|
|
back->b=back->b*bm.b+bo.b;
|
|
|
|
bg+=4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void reinitGrids(int w,int h)
|
|
|
|
{
|
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
|
|
|
foreOffset.resize(w*h);
|
|
|
|
foreMult.resize(w*h);
|
|
|
|
backOffset.resize(w*h);
|
|
|
|
backMult.resize(w*h);
|
|
|
|
}
|
|
|
|
void reinitGrids()
|
|
|
|
{
|
|
|
|
reinitGrids(df::global::gps->dimy,df::global::gps->dimx);
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
tthread::fast_mutex dataMutex;
|
2013-06-30 06:05:59 -06:00
|
|
|
std::vector<rgbf> foreOffset,foreMult;
|
|
|
|
std::vector<rgbf> backOffset,backMult;
|
2013-06-22 08:40:52 -06:00
|
|
|
inline int xyToTile(int x, int y)
|
|
|
|
{
|
|
|
|
return x*(df::global::gps->dimy) + y;
|
|
|
|
}
|
|
|
|
renderer_lua(renderer* parent):renderer_wrap(parent)
|
|
|
|
{
|
|
|
|
reinitGrids();
|
|
|
|
}
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_tile(int32_t x, int32_t y) {
|
2013-06-22 08:40:52 -06:00
|
|
|
renderer_wrap::update_tile(x,y);
|
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
|
|
|
overwriteTile(x,y);
|
|
|
|
//some sort of mutex or sth?
|
|
|
|
//and then map read
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void update_all() {
|
2013-06-22 08:40:52 -06:00
|
|
|
renderer_wrap::update_all();
|
|
|
|
tthread::lock_guard<tthread::fast_mutex> guard(dataMutex);
|
|
|
|
for (int x = 0; x < df::global::gps->dimx; x++)
|
|
|
|
for (int y = 0; y < df::global::gps->dimy; y++)
|
|
|
|
overwriteTile(x,y);
|
|
|
|
//some sort of mutex or sth?
|
|
|
|
//and then map read
|
|
|
|
//same stuff for all of them i guess...
|
|
|
|
};
|
2015-02-14 20:53:06 -07:00
|
|
|
virtual void grid_resize(int32_t w, int32_t h) {
|
2013-06-22 08:40:52 -06:00
|
|
|
renderer_wrap::grid_resize(w,h);
|
|
|
|
reinitGrids(w,h);
|
|
|
|
};
|
|
|
|
virtual void resize(int32_t w, int32_t h) {
|
|
|
|
renderer_wrap::resize(w,h);
|
|
|
|
reinitGrids(w,h);
|
|
|
|
}
|
2013-06-23 10:25:42 -06:00
|
|
|
};
|
|
|
|
#endif
|