/* * 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 #include #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 grd_curscreen; //active screen grs_canvas_ptr gr_create_canvas(uint16_t w, uint16_t h) { grs_canvas_ptr n = make_unique(); unsigned char *pixdata; MALLOC(pixdata, unsigned char, MAX_BMP_SIZE(w, h)); gr_init_canvas(*n.get(), pixdata, BM_LINEAR, w, h); 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(); gr_init_sub_canvas(*n.get(), canv, x, y, w, h); 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_default_canvas() { grd_curcanv = &(grd_curscreen->sc_canvas); } void gr_set_current_canvas(grs_canvas &canv) { grd_curcanv = &canv; } void _gr_set_current_canvas(grs_canvas *canv) { _gr_set_current_canvas_inline(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 }