dxx-rebirth/common/2d/canvas.cpp
2014-11-30 22:09:21 +00:00

122 lines
3.5 KiB
C++

/*
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
#include <stdlib.h>
#include <stdio.h>
#include "u_mem.h"
#include "gr.h"
#include "grdef.h"
#ifdef OGL
#include "ogl_init.h"
#endif
#include "compiler-make_unique.h"
grs_canvas * grd_curcanv; //active canvas
std::unique_ptr<grs_screen> grd_curscreen; //active screen
grs_canvas_ptr gr_create_canvas(uint16_t w, uint16_t h)
{
grs_canvas_ptr n = make_unique<grs_main_canvas>();
gr_init_bitmap_alloc(n->cv_bitmap, BM_LINEAR, 0, 0, w, h, w);
n->cv_color = 0;
n->cv_fade_level = GR_FADE_OFF;
n->cv_blend_func = GR_BLEND_NORMAL;
n->cv_drawmode = 0;
n->cv_font = NULL;
n->cv_font_fg_color = 0;
n->cv_font_bg_color = 0;
return n;
}
grs_subcanvas_ptr gr_create_sub_canvas(grs_canvas *canv, uint16_t x, uint16_t y, uint16_t w, uint16_t h)
{
auto n = make_unique<grs_subcanvas>();
gr_init_sub_bitmap (n->cv_bitmap, canv->cv_bitmap, x, y, w, h);
n->cv_color = canv->cv_color;
n->cv_fade_level = canv->cv_fade_level;
n->cv_blend_func = canv->cv_blend_func;
n->cv_drawmode = canv->cv_drawmode;
n->cv_font = canv->cv_font;
n->cv_font_fg_color = canv->cv_font_fg_color;
n->cv_font_bg_color = canv->cv_font_bg_color;
return n;
}
void gr_init_canvas(grs_canvas *canv, unsigned char * pixdata, uint8_t pixtype, uint16_t w, uint16_t h)
{
canv->cv_color = 0;
canv->cv_fade_level = GR_FADE_OFF;
canv->cv_blend_func = GR_BLEND_NORMAL;
canv->cv_drawmode = 0;
canv->cv_font = NULL;
canv->cv_font_fg_color = 0;
canv->cv_font_bg_color = 0;
auto wreal = w;
gr_init_bitmap(canv->cv_bitmap, pixtype, 0, 0, w, h, wreal, pixdata);
}
void gr_init_sub_canvas(grs_canvas *n, grs_canvas *src, uint16_t x, uint16_t y, uint16_t w, uint16_t h)
{
n->cv_color = src->cv_color;
n->cv_fade_level = src->cv_fade_level;
n->cv_blend_func = src->cv_blend_func;
n->cv_drawmode = src->cv_drawmode;
n->cv_font = src->cv_font;
n->cv_font_fg_color = src->cv_font_fg_color;
n->cv_font_bg_color = src->cv_font_bg_color;
gr_init_sub_bitmap (n->cv_bitmap, src->cv_bitmap, x, y, w, h);
}
grs_main_canvas::~grs_main_canvas()
{
gr_free_bitmap_data(cv_bitmap);
}
void gr_set_current_canvas( grs_canvas *canv )
{
if (canv==NULL)
grd_curcanv = &(grd_curscreen->sc_canvas);
else
grd_curcanv = canv;
}
void gr_clear_canvas(color_t color)
{
gr_setcolor(color);
gr_rect(0,0,GWIDTH-1,GHEIGHT-1);
}
void gr_setcolor(color_t color)
{
grd_curcanv->cv_color=color;
}
void gr_settransblend(int fade_level, ubyte blend_func)
{
grd_curcanv->cv_fade_level=fade_level;
grd_curcanv->cv_blend_func=blend_func;
#ifdef OGL
ogl_set_blending();
#endif
}