/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
*/
#include "ags/lib/std/algorithm.h"
#include "ags/lib/std/math.h"
#include "ags/lib/aastr-0.1.1/aastr.h"
#include "ags/shared/core/platform.h"
#include "ags/shared/ac/common.h"
#include "ags/shared/util/compress.h"
#include "ags/shared/util/wgt2_allg.h"
#include "ags/shared/ac/view.h"
#include "ags/engine/ac/character_extras.h"
#include "ags/shared/ac/character_info.h"
#include "ags/engine/ac/display.h"
#include "ags/engine/ac/draw.h"
#include "ags/engine/ac/draw_software.h"
#include "ags/engine/ac/game_setup.h"
#include "ags/shared/ac/game_setup_struct.h"
#include "ags/engine/ac/game_state.h"
#include "ags/engine/ac/global_game.h"
#include "ags/engine/ac/global_gui.h"
#include "ags/engine/ac/global_region.h"
#include "ags/engine/ac/gui.h"
#include "ags/engine/ac/mouse.h"
#include "ags/engine/ac/move_list.h"
#include "ags/engine/ac/overlay.h"
#include "ags/engine/ac/sys_events.h"
#include "ags/engine/ac/room_object.h"
#include "ags/engine/ac/room_status.h"
#include "ags/engine/ac/runtime_defines.h"
#include "ags/engine/ac/screen_overlay.h"
#include "ags/engine/ac/sprite.h"
#include "ags/engine/ac/sprite_list_entry.h"
#include "ags/engine/ac/string.h"
#include "ags/engine/ac/system.h"
#include "ags/engine/ac/view_frame.h"
#include "ags/engine/ac/walkable_area.h"
#include "ags/engine/ac/walk_behind.h"
#include "ags/engine/ac/dynobj/script_system.h"
#include "ags/engine/debugging/debugger.h"
#include "ags/engine/debugging/debug_log.h"
#include "ags/shared/font/fonts.h"
#include "ags/shared/gui/gui_main.h"
#include "ags/shared/gui/gui_object.h"
#include "ags/engine/platform/base/ags_platform_driver.h"
#include "ags/plugins/ags_plugin.h"
#include "ags/plugins/plugin_engine.h"
#include "ags/shared/ac/sprite_cache.h"
#include "ags/engine/gfx/gfx_util.h"
#include "ags/engine/gfx/graphics_driver.h"
#include "ags/engine/gfx/blender.h"
#include "ags/engine/media/audio/audio_system.h"
#include "ags/engine/ac/game.h"
#include "ags/ags.h"
#include "ags/globals.h"
namespace AGS3 {
using namespace AGS::Shared;
using namespace AGS::Engine;
int _places_r = 3, _places_g = 2, _places_b = 3;
ObjTexture::ObjTexture(ObjTexture &&o) {
*this = std::move(o);
}
ObjTexture::~ObjTexture() {
Bmp.reset();
if (Ddb) {
assert(_G(gfxDriver));
_G(gfxDriver)->DestroyDDB(Ddb);
}
}
ObjTexture &ObjTexture::operator=(ObjTexture &&o) {
if (Ddb) {
assert(_G(gfxDriver));
_G(gfxDriver)->DestroyDDB(Ddb);
}
Bmp = std::move(o.Bmp);
Ddb = o.Ddb;
o.Ddb = nullptr;
Pos = o.Pos;
Off = o.Off;
return *this;
}
void setpal() {
set_palette_range(_G(palette), 0, 255, 0);
}
// PSP: convert 32 bit RGB to BGR.
Bitmap *convert_32_to_32bgr(Bitmap *tempbl) {
int i = 0;
int j = 0;
unsigned char *current;
while (i < tempbl->GetHeight()) {
current = tempbl->GetScanLineForWriting(i);
while (j < tempbl->GetWidth()) {
current[0] ^= current[2];
current[2] ^= current[0];
current[0] ^= current[2];
current += 4;
j++;
}
i++;
j = 0;
}
return tempbl;
}
// NOTE: Some of these conversions are required even when using
// D3D and OpenGL rendering, for two reasons:
// 1) certain raw drawing operations are still performed by software
// Allegro methods, hence bitmaps should be kept compatible to any native
// software operations, such as blitting two bitmaps of different formats.
// 2) mobile ports feature an OpenGL renderer built in Allegro library,
// that assumes native bitmaps are in OpenGL-compatible format, so that it
// could copy them to texture without additional changes.
// AGS own OpenGL renderer tries to sync its behavior with the former one.
//
// TODO: make _G(gfxDriver)->GetCompatibleBitmapFormat describe all necessary
// conversions, so that we did not have to guess.
//
Bitmap *AdjustBitmapForUseWithDisplayMode(Bitmap *bitmap, bool has_alpha) {
const int bmp_col_depth = bitmap->GetColorDepth();
const int game_col_depth = _GP(game).GetColorDepth();
const int compat_col_depth = _G(gfxDriver)->GetCompatibleBitmapFormat(game_col_depth);
const bool must_switch_palette = bitmap->GetColorDepth() == 8 && game_col_depth > 8;
if (must_switch_palette)
select_palette(_G(palette));
Bitmap *new_bitmap = bitmap;
//
// The only special case when bitmap needs to be prepared for graphics driver
//
// In 32-bit display mode, 32-bit bitmaps may require component conversion
// to match graphics driver expectation about pixel format.
// TODO: make GetCompatibleBitmapFormat tell this somehow
#if defined (AGS_INVERTED_COLOR_ORDER)
const int sys_col_depth = System_GetColorDepth();
if (sys_col_depth > 16 && bmp_col_depth == 32) {
// Convert RGB to BGR.
new_bitmap = convert_32_to_32bgr(bitmap);
}
#endif
//
// The rest is about bringing bitmaps to the native game's format
// (has no dependency on display mode).
//
// In 32-bit game 32-bit bitmaps should have transparent pixels marked
// (this adjustment is probably needed for DrawingSurface ops)
if (game_col_depth == 32 && bmp_col_depth == 32) {
if (has_alpha)
set_rgb_mask_using_alpha_channel(new_bitmap);
}
// In 32-bit game hicolor bitmaps must be converted to the true color
else if (game_col_depth == 32 && (bmp_col_depth > 8 && bmp_col_depth <= 16)) {
new_bitmap = BitmapHelper::CreateBitmapCopy(bitmap, compat_col_depth);
}
// In non-32-bit game truecolor bitmaps must be downgraded
else if (game_col_depth <= 16 && bmp_col_depth > 16) {
if (has_alpha) // if has valid alpha channel, convert it to regular transparency mask
new_bitmap = remove_alpha_channel(bitmap);
else // else simply convert bitmap
new_bitmap = BitmapHelper::CreateBitmapCopy(bitmap, compat_col_depth);
}
// Finally, if we did not create a new copy already, - convert to driver compatible format
if (new_bitmap == bitmap)
new_bitmap = GfxUtil::ConvertBitmap(bitmap, _G(gfxDriver)->GetCompatibleBitmapFormat(bitmap->GetColorDepth()));
if (must_switch_palette)
unselect_palette();
return new_bitmap;
}
Bitmap *CreateCompatBitmap(int width, int height, int col_depth) {
return new Bitmap(width, height,
_G(gfxDriver)->GetCompatibleBitmapFormat(col_depth == 0 ? _GP(game).GetColorDepth() : col_depth));
}
Bitmap *ReplaceBitmapWithSupportedFormat(Bitmap *bitmap) {
return GfxUtil::ConvertBitmap(bitmap, _G(gfxDriver)->GetCompatibleBitmapFormat(bitmap->GetColorDepth()));
}
Bitmap *PrepareSpriteForUse(Bitmap *bitmap, bool has_alpha) {
Bitmap *new_bitmap = AdjustBitmapForUseWithDisplayMode(bitmap, has_alpha);
if (new_bitmap != bitmap)
delete bitmap;
return new_bitmap;
}
PBitmap PrepareSpriteForUse(PBitmap bitmap, bool has_alpha) {
Bitmap *new_bitmap = AdjustBitmapForUseWithDisplayMode(bitmap.get(), has_alpha);
return new_bitmap == bitmap.get() ? bitmap : PBitmap(new_bitmap); // if bitmap is same, don't create new smart ptr!
}
Bitmap *CopyScreenIntoBitmap(int width, int height, bool at_native_res) {
Bitmap *dst = new Bitmap(width, height, _GP(game).GetColorDepth());
GraphicResolution want_fmt;
// If the size and color depth are supported we may copy right into our bitmap
if (_G(gfxDriver)->GetCopyOfScreenIntoBitmap(dst, at_native_res, &want_fmt))
return dst;
// Otherwise we might need to copy between few bitmaps...
Bitmap *buf_screenfmt = new Bitmap(want_fmt.Width, want_fmt.Height, want_fmt.ColorDepth);
_G(gfxDriver)->GetCopyOfScreenIntoBitmap(buf_screenfmt, at_native_res);
// If at least size matches then we may blit
if (dst->GetSize() == buf_screenfmt->GetSize()) {
dst->Blit(buf_screenfmt);
}
// Otherwise we need to go through another bitmap of the matching format
else {
Bitmap *buf_dstfmt = new Bitmap(buf_screenfmt->GetWidth(), buf_screenfmt->GetHeight(), dst->GetColorDepth());
buf_dstfmt->Blit(buf_screenfmt);
dst->StretchBlt(buf_dstfmt, RectWH(dst->GetSize()));
delete buf_dstfmt;
}
delete buf_screenfmt;
return dst;
}
// Begin resolution system functions
// Multiplies up the number of pixels depending on the current
// resolution, to give a relatively fixed size at any game res
AGS_INLINE int get_fixed_pixel_size(int pixels) {
return pixels * _GP(game).GetRelativeUIMult();
}
AGS_INLINE int data_to_game_coord(int coord) {
return coord * _GP(game).GetDataUpscaleMult();
}
AGS_INLINE void data_to_game_coords(int *x, int *y) {
const int mul = _GP(game).GetDataUpscaleMult();
x[0] *= mul;
y[0] *= mul;
}
AGS_INLINE void data_to_game_round_up(int *x, int *y) {
const int mul = _GP(game).GetDataUpscaleMult();
x[0] = x[0] * mul + (mul - 1);
y[0] = y[0] * mul + (mul - 1);
}
AGS_INLINE int game_to_data_coord(int coord) {
return coord / _GP(game).GetDataUpscaleMult();
}
AGS_INLINE void game_to_data_coords(int &x, int &y) {
const int mul = _GP(game).GetDataUpscaleMult();
x /= mul;
y /= mul;
}
AGS_INLINE int game_to_data_round_up(int coord) {
const int mul = _GP(game).GetDataUpscaleMult();
return (coord / mul) + (mul - 1);
}
AGS_INLINE void ctx_data_to_game_coord(int &x, int &y, bool hires_ctx) {
if (hires_ctx && !_GP(game).IsLegacyHiRes()) {
x /= HIRES_COORD_MULTIPLIER;
y /= HIRES_COORD_MULTIPLIER;
} else if (!hires_ctx && _GP(game).IsLegacyHiRes()) {
x *= HIRES_COORD_MULTIPLIER;
y *= HIRES_COORD_MULTIPLIER;
}
}
AGS_INLINE void ctx_data_to_game_size(int &w, int &h, bool hires_ctx) {
if (hires_ctx && !_GP(game).IsLegacyHiRes()) {
w = MAX(1, (w / HIRES_COORD_MULTIPLIER));
h = MAX(1, (h / HIRES_COORD_MULTIPLIER));
} else if (!hires_ctx && _GP(game).IsLegacyHiRes()) {
w *= HIRES_COORD_MULTIPLIER;
h *= HIRES_COORD_MULTIPLIER;
}
}
AGS_INLINE int ctx_data_to_game_size(int size, bool hires_ctx) {
if (hires_ctx && !_GP(game).IsLegacyHiRes())
return MAX(1, (size / HIRES_COORD_MULTIPLIER));
if (!hires_ctx && _GP(game).IsLegacyHiRes())
return size * HIRES_COORD_MULTIPLIER;
return size;
}
AGS_INLINE int game_to_ctx_data_size(int size, bool hires_ctx) {
if (hires_ctx && !_GP(game).IsLegacyHiRes())
return size * HIRES_COORD_MULTIPLIER;
else if (!hires_ctx && _GP(game).IsLegacyHiRes())
return MAX(1, (size / HIRES_COORD_MULTIPLIER));
return size;
}
AGS_INLINE void defgame_to_finalgame_coords(int &x, int &y) {
// Note we support only upscale now
x *= _GP(game).GetScreenUpscaleMult();
y *= _GP(game).GetScreenUpscaleMult();
}
// End resolution system functions
// Create blank (black) images used to repaint borders around game frame
void create_blank_image(int coldepth) {
// this is the first time that we try to use the graphics driver,
// so it's the most likey place for a crash
//try
//{
Bitmap *blank = CreateCompatBitmap(16, 16, coldepth);
blank->Clear();
_G(blankImage) = _G(gfxDriver)->CreateDDBFromBitmap(blank, false, true);
_G(blankSidebarImage) = _G(gfxDriver)->CreateDDBFromBitmap(blank, false, true);
delete blank;
/*}
catch (Ali3DException gfxException)
{
quit(gfxException.Message.GetCStr());
}*/
}
void destroy_blank_image() {
if (_G(blankImage))
_G(gfxDriver)->DestroyDDB(_G(blankImage));
if (_G(blankSidebarImage))
_G(gfxDriver)->DestroyDDB(_G(blankSidebarImage));
_G(blankImage) = nullptr;
_G(blankSidebarImage) = nullptr;
}
int MakeColor(int color_index) {
color_t real_color = 0;
__my_setcolor(&real_color, color_index, _GP(game).GetColorDepth());
return real_color;
}
void init_draw_method() {
if (_G(gfxDriver)->HasAcceleratedTransform()) {
_G(walkBehindMethod) = DrawAsSeparateSprite;
create_blank_image(_GP(game).GetColorDepth());
} else {
_G(walkBehindMethod) = DrawOverCharSprite;
}
on_mainviewport_changed();
init_room_drawdata();
if (_G(gfxDriver)->UsesMemoryBackBuffer())
_G(gfxDriver)->GetMemoryBackBuffer()->Clear();
}
void dispose_draw_method() {
dispose_room_drawdata();
dispose_invalid_regions(false);
destroy_blank_image();
}
void init_game_drawdata() {
// character and object caches
_GP(charcache).resize(_GP(game).numcharacters);
for (int i = 0; i < MAX_ROOM_OBJECTS; ++i)
_G(objcache)[i].image = nullptr;
size_t actsps_num = _GP(game).numcharacters + MAX_ROOM_OBJECTS;
_GP(actsps).resize(actsps_num);
_GP(guibg).resize(_GP(game).numgui);
size_t guio_num = 0;
// Prepare GUI cache lists and build the quick reference for controls cache
_GP(guiobjddbref).resize(_GP(game).numgui);
for (const auto &gui : _GP(guis)) {
_GP(guiobjddbref)[gui.ID] = guio_num;
guio_num += gui.GetControlCount();
}
_GP(guiobjbg).resize(guio_num);
}
void dispose_game_drawdata() {
clear_drawobj_cache();
_GP(charcache).clear();
_GP(actsps).clear();
_GP(walkbehindobj).clear();
_GP(guibg).clear();
_GP(guiobjbg).clear();
_GP(guiobjddbref).clear();
}
static void dispose_debug_room_drawdata() {
_GP(debugRoomMaskObj) = ObjTexture();
_GP(debugMoveListObj) = ObjTexture();
}
void dispose_room_drawdata() {
_GP(CameraDrawData).clear();
dispose_invalid_regions(true);
}
void clear_drawobj_cache() {
// clear the character cache
for (auto &cc : _GP(charcache)) {
if (cc.in_use)
delete cc.image;
cc.image = nullptr;
cc.in_use = false;
}
// clear the object cache
for (int i = 0; i < MAX_ROOM_OBJECTS; ++i) {
delete _G(objcache)[i].image;
_G(objcache)[i].image = nullptr;
}
// room overlays cache
_GP(screenovercache).clear();
// cleanup Character + Room object textures
for (auto &o : _GP(actsps)) o = ObjTexture();
for (auto &o : _GP(walkbehindobj)) o = ObjTexture();
// cleanup GUI and controls textures
for (auto &o : _GP(guibg)) o = ObjTexture();
for (auto &o : _GP(guiobjbg)) o = ObjTexture();
// cleanup Overlay intermediate bitmaps
_GP(overlaybmp).clear();
dispose_debug_room_drawdata();
}
void on_mainviewport_changed() {
if (!_G(gfxDriver)->RequiresFullRedrawEachFrame()) {
const auto &view = _GP(play).GetMainViewport();
set_invalidrects_globaloffs(view.Left, view.Top);
// the black background region covers whole game screen
init_invalid_regions(-1, _GP(game).GetGameRes(), RectWH(_GP(game).GetGameRes()));
if (_GP(game).GetGameRes().ExceedsByAny(view.GetSize()))
clear_letterbox_borders();
}
}
// Allocates a bitmap for rendering camera/viewport pair (software render mode)
void prepare_roomview_frame(Viewport *view) {
if (!view->GetCamera()) return; // no camera link
const int view_index = view->GetID();
const Size view_sz = view->GetRect().GetSize();
const Size cam_sz = view->GetCamera()->GetRect().GetSize();
RoomCameraDrawData &draw_dat = _GP(CameraDrawData)[view_index];
// We use intermediate bitmap to render camera/viewport pair in software mode under these conditions:
// * camera size and viewport size are different (this may be suboptimal to paint dirty rects stretched,
// and also Allegro backend cannot stretch background of different colour depth).
// * viewport is located outside of the virtual screen (even if partially): subbitmaps cannot contain
// regions outside of master bitmap, and we must not clamp surface size to virtual screen because
// plugins may want to also use viewport bitmap, therefore it should retain full size.
if (cam_sz == view_sz && !draw_dat.IsOffscreen) {
// note we keep the buffer allocated in case it will become useful later
draw_dat.Frame.reset();
} else {
PBitmap &camera_frame = draw_dat.Frame;
PBitmap &camera_buffer = draw_dat.Buffer;
if (!camera_buffer || camera_buffer->GetWidth() < cam_sz.Width || camera_buffer->GetHeight() < cam_sz.Height) {
// Allocate new buffer bitmap with an extra size in case they will want to zoom out
int room_width = data_to_game_coord(_GP(thisroom).Width);
int room_height = data_to_game_coord(_GP(thisroom).Height);
Size alloc_sz = Size::Clamp(cam_sz * 2, Size(1, 1), Size(room_width, room_height));
camera_buffer.reset(new Bitmap(alloc_sz.Width, alloc_sz.Height, _G(gfxDriver)->GetMemoryBackBuffer()->GetColorDepth()));
}
if (!camera_frame || camera_frame->GetSize() != cam_sz) {
camera_frame.reset(BitmapHelper::CreateSubBitmap(camera_buffer.get(), RectWH(cam_sz)));
}
}
}
// Syncs room viewport and camera in case either size has changed
void sync_roomview(Viewport *view) {
if (view->GetCamera() == nullptr)
return;
// Note the dirty regions' viewport is found using absolute offset on game screen
init_invalid_regions(view->GetID(),
view->GetCamera()->GetRect().GetSize(),
_GP(play).GetRoomViewportAbs(view->GetID()));
prepare_roomview_frame(view);
}
void init_room_drawdata() {
// Update debug overlays, if any were on
debug_draw_room_mask(_G(debugRoomMask));
debug_draw_movelist(_G(debugMoveListChar));
// Following data is only updated for software renderer
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
// Make sure all frame buffers are created for software drawing
int view_count = _GP(play).GetRoomViewportCount();
_GP(CameraDrawData).resize(view_count);
for (int i = 0; i < _GP(play).GetRoomViewportCount(); ++i)
sync_roomview(_GP(play).GetRoomViewport(i).get());
}
void on_roomviewport_created(int index) {
if (!_G(gfxDriver) || _G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
if ((size_t)index < _GP(CameraDrawData).size())
return;
_GP(CameraDrawData).resize(index + 1);
}
void on_roomviewport_deleted(int index) {
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
_GP(CameraDrawData).erase(_GP(CameraDrawData).begin() + index);
delete_invalid_regions(index);
}
void on_roomviewport_changed(Viewport *view) {
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
if (!view->IsVisible() || view->GetCamera() == nullptr)
return;
const bool off = !IsRectInsideRect(RectWH(_G(gfxDriver)->GetMemoryBackBuffer()->GetSize()), view->GetRect());
const bool off_changed = off != _GP(CameraDrawData)[view->GetID()].IsOffscreen;
_GP(CameraDrawData)[view->GetID()].IsOffscreen = off;
if (view->HasChangedSize())
sync_roomview(view);
else if (off_changed)
prepare_roomview_frame(view);
// TODO: don't have to do this all the time, perhaps do "dirty rect" method
// and only clear previous viewport location?
invalidate_screen();
_G(gfxDriver)->GetMemoryBackBuffer()->Clear();
}
void detect_roomviewport_overlaps(size_t z_index) {
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
// Find out if we overlap or are overlapped by anything;
const auto &viewports = _GP(play).GetRoomViewportsZOrdered();
for (; z_index < viewports.size(); ++z_index) {
auto this_view = viewports[z_index];
const int this_id = this_view->GetID();
bool is_overlap = false;
if (!this_view->IsVisible()) continue;
for (size_t z_index2 = 0; z_index2 < z_index; ++z_index2) {
if (!viewports[z_index2]->IsVisible()) continue;
if (AreRectsIntersecting(this_view->GetRect(), viewports[z_index2]->GetRect())) {
is_overlap = true;
break;
}
}
if (_GP(CameraDrawData)[this_id].IsOverlap != is_overlap) {
_GP(CameraDrawData)[this_id].IsOverlap = is_overlap;
prepare_roomview_frame(this_view.get());
}
}
}
void on_roomcamera_changed(Camera *cam) {
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
if (cam->HasChangedSize()) {
auto viewrefs = cam->GetLinkedViewports();
for (auto vr : viewrefs) {
PViewport vp = vr.lock();
if (vp)
sync_roomview(vp.get());
}
}
// TODO: only invalidate what this particular camera sees
invalidate_screen();
}
void mark_object_changed(int objid) {
_G(objcache)[objid].y = -9999;
}
void reset_objcache_for_sprite(int sprnum, bool deleted) {
// Check if this sprite is assigned to any game object, and mark these for update;
// if the sprite was deleted, also dispose shared textures
// room objects cache
if (_G(croom) != nullptr) {
for (size_t i = 0; i < (size_t)_G(croom)->numobj; ++i) {
if (_G(objcache)[i].sppic == sprnum)
_G(objcache)[i].sppic = -1;
if (deleted && ((int)(_GP(actsps)[i].SpriteID) == sprnum))
_GP(actsps)[i] = ObjTexture();
}
}
// character cache
for (size_t i = 0; i < (size_t)_GP(game).numcharacters; ++i) {
if (_GP(charcache)[i].sppic == sprnum)
_GP(charcache)[i].sppic = -1;
if (deleted && ((int)(_GP(actsps)[ACTSP_OBJSOFF + i].SpriteID) == sprnum))
_GP(actsps)[i] = ObjTexture();
}
}
void mark_screen_dirty() {
_G(screen_is_dirty) = true;
}
bool is_screen_dirty() {
return _G(screen_is_dirty);
}
void invalidate_screen() {
invalidate_all_rects();
}
void invalidate_camera_frame(int index) {
invalidate_all_camera_rects(index);
}
void invalidate_rect(int x1, int y1, int x2, int y2, bool in_room) {
invalidate_rect_ds(x1, y1, x2, y2, in_room);
}
void invalidate_sprite(int x1, int y1, IDriverDependantBitmap *pic, bool in_room) {
invalidate_rect_ds(x1, y1, x1 + pic->GetWidth(), y1 + pic->GetHeight(), in_room);
}
void invalidate_sprite_glob(int x1, int y1, IDriverDependantBitmap *pic) {
invalidate_rect_global(x1, y1, x1 + pic->GetWidth(), y1 + pic->GetHeight());
}
void mark_current_background_dirty() {
_G(current_background_is_dirty) = true;
}
void draw_and_invalidate_text(Bitmap *ds, int x1, int y1, int font, color_t text_color, const char *text) {
wouttext_outline(ds, x1, y1, font, text_color, text);
invalidate_rect(x1, y1, x1 + get_text_width_outlined(text, font),
y1 + get_font_height_outlined(font) + get_fixed_pixel_size(1), false);
}
// Renders black borders for the legacy boxed game mode,
// where whole game screen changes size between large and small rooms
void render_black_borders() {
if (_G(gfxDriver)->UsesMemoryBackBuffer())
return;
{
_G(gfxDriver)->BeginSpriteBatch(RectWH(_GP(game).GetGameRes()), SpriteTransform());
const Rect &viewport = _GP(play).GetMainViewport();
if (viewport.Top > 0) {
// letterbox borders
_G(blankImage)->SetStretch(_GP(game).GetGameRes().Width, viewport.Top, false);
_G(gfxDriver)->DrawSprite(0, 0, _G(blankImage));
_G(gfxDriver)->DrawSprite(0, viewport.Bottom + 1, _G(blankImage));
}
if (viewport.Left > 0) {
// sidebar borders for widescreen
_G(blankSidebarImage)->SetStretch(viewport.Left, viewport.GetHeight(), false);
_G(gfxDriver)->DrawSprite(0, 0, _G(blankSidebarImage));
_G(gfxDriver)->DrawSprite(viewport.Right + 1, 0, _G(blankSidebarImage));
}
_G(gfxDriver)->EndSpriteBatch();
}
}
void render_to_screen() {
// Stage: final plugin callback (still drawn on game screen
if (pl_any_want_hook(AGSE_FINALSCREENDRAW)) {
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetMainViewport(), SpriteTransform(), Point(0, _GP(play).shake_screen_yoff), (GraphicFlip)_GP(play).screen_flipped);
_G(gfxDriver)->DrawSprite(AGSE_FINALSCREENDRAW, 0, nullptr);
_G(gfxDriver)->EndSpriteBatch();
}
// Stage: engine overlay
construct_engine_overlay();
// only vsync in full screen mode, it makes things worse in a window
_G(gfxDriver)->SetVsync((_GP(scsystem).vsync > 0) && (!_GP(scsystem).windowed));
bool succeeded = false;
while (!succeeded && !_G(want_exit) && !_G(abort_engine)) {
// try
// {
// For software renderer, need to blacken upper part of the game frame when shaking screen moves image down
const Rect &viewport = _GP(play).GetMainViewport();
if (_GP(play).shake_screen_yoff > 0 && !_G(gfxDriver)->RequiresFullRedrawEachFrame())
_G(gfxDriver)->ClearRectangle(viewport.Left, viewport.Top, viewport.GetWidth() - 1, _GP(play).shake_screen_yoff, nullptr);
_G(gfxDriver)->Render(0, _GP(play).shake_screen_yoff, (GraphicFlip)_GP(play).screen_flipped);
#if AGS_PLATFORM_OS_ANDROID
if (_GP(game).color_depth == 1)
android_render();
#elif AGS_PLATFORM_OS_IOS
if (_GP(game).color_depth == 1)
ios_render();
#endif
succeeded = true;
/*}
catch (Ali3DFullscreenLostException e) {
Debug::Printf("Renderer exception: %s", e.Message.GetCStr());
while (_G(game_update_suspend) && (!_G(want_exit)) && (!_G(abort_engine))) {
sys_evt_process_pending();
platform->Delay(300);
}
}*/
}
}
// Blanks out borders around main viewport in case it became smaller (e.g. after loading another room)
void clear_letterbox_borders() {
const Rect &viewport = _GP(play).GetMainViewport();
_G(gfxDriver)->ClearRectangle(0, 0, _GP(game).GetGameRes().Width - 1, viewport.Top - 1, nullptr);
_G(gfxDriver)->ClearRectangle(0, viewport.Bottom + 1, _GP(game).GetGameRes().Width - 1, _GP(game).GetGameRes().Height - 1, nullptr);
}
void draw_game_screen_callback() {
construct_game_scene(true);
construct_game_screen_overlay(false);
}
void putpixel_compensate(Bitmap *ds, int xx, int yy, int col) {
if ((ds->GetColorDepth() == 32) && (col != 0)) {
// ensure the alpha channel is preserved if it has one
int alphaval = geta32(ds->GetPixel(xx, yy));
col = makeacol32(getr32(col), getg32(col), getb32(col), alphaval);
}
ds->FillRect(Rect(xx, yy, xx + get_fixed_pixel_size(1) - 1, yy + get_fixed_pixel_size(1) - 1), col);
}
void draw_sprite_support_alpha(Bitmap *ds, bool ds_has_alpha, int xpos, int ypos, Bitmap *image, bool src_has_alpha,
BlendMode blend_mode, int alpha) {
if (alpha <= 0)
return;
if (_GP(game).options[OPT_SPRITEALPHA] == kSpriteAlphaRender_Proper) {
GfxUtil::DrawSpriteBlend(ds, Point(xpos, ypos), image, blend_mode, ds_has_alpha, src_has_alpha, alpha);
}
// Backwards-compatible drawing
else if (src_has_alpha && alpha == 0xFF) {
set_alpha_blender();
ds->TransBlendBlt(image, xpos, ypos);
} else {
GfxUtil::DrawSpriteWithTransparency(ds, image, xpos, ypos, alpha);
}
}
void draw_sprite_slot_support_alpha(Bitmap *ds, bool ds_has_alpha, int xpos, int ypos, int src_slot,
BlendMode blend_mode, int alpha) {
draw_sprite_support_alpha(ds, ds_has_alpha, xpos, ypos, _GP(spriteset)[src_slot], (_GP(game).SpriteInfos[src_slot].Flags & SPF_ALPHACHANNEL) != 0,
blend_mode, alpha);
}
Engine::IDriverDependantBitmap* recycle_ddb_sprite(Engine::IDriverDependantBitmap *ddb, uint32_t sprite_id, Shared::Bitmap *source, bool has_alpha, bool opaque) {
// no ddb, - get or create shared object
if (!ddb)
return _G(gfxDriver)->GetSharedDDB(sprite_id, source, has_alpha, opaque);
// same sprite id, - use existing
if ((sprite_id != UINT32_MAX) && (ddb->GetRefID() == sprite_id))
return ddb;
// not related to a sprite ID, but has same resolution, -
// repaint directly from the given bitmap
if ((sprite_id == UINT32_MAX) && (ddb->GetColorDepth() == source->GetColorDepth()) &&
(ddb->GetWidth() == source->GetWidth()) && (ddb->GetHeight() == source->GetHeight())) {
_G(gfxDriver)->UpdateDDBFromBitmap(ddb, source, has_alpha);
return ddb;
}
// have to recreate ddb
_G(gfxDriver)->DestroyDDB(ddb);
return _G(gfxDriver)->GetSharedDDB(sprite_id, source, has_alpha, opaque);
}
void sync_object_texture(ObjTexture &obj, bool has_alpha = false, bool opaque = false) {
obj.Ddb = recycle_ddb_sprite(obj.Ddb, obj.SpriteID, obj.Bmp.get(), has_alpha, opaque);
}
//------------------------------------------------------------------------
// Functions for filling the lists of sprites to render
static void clear_draw_list() {
_GP(thingsToDrawList).clear();
}
static void add_thing_to_draw(IDriverDependantBitmap *ddb, int x, int y) {
assert(ddb != nullptr);
SpriteListEntry sprite;
sprite.ddb = ddb;
sprite.x = x;
sprite.y = y;
_GP(thingsToDrawList).push_back(sprite);
}
static void add_render_stage(int stage) {
SpriteListEntry sprite;
sprite.renderStage = stage;
_GP(thingsToDrawList).push_back(sprite);
}
static void clear_sprite_list() {
_GP(sprlist).clear();
}
static void add_to_sprite_list(IDriverDependantBitmap *ddb, int x, int y, int zorder, bool isWalkBehind, int id = -1) {
assert(ddb);
// completely invisible, so don't draw it at all
if (ddb->GetAlpha() == 0)
return;
SpriteListEntry sprite;
sprite.id = id;
sprite.ddb = ddb;
sprite.zorder = zorder;
sprite.x = x;
sprite.y = y;
if (_G(walkBehindMethod) == DrawAsSeparateSprite)
sprite.takesPriorityIfEqual = !isWalkBehind;
else
sprite.takesPriorityIfEqual = isWalkBehind;
_GP(sprlist).push_back(sprite);
}
// z-order sorting function for sprites
static bool spritelistentry_less(const SpriteListEntry &e1, const SpriteListEntry &e2) {
return (e1.zorder < e2.zorder);
}
// room-specialized function to sort the sprites into baseline order
// has special handling for walk-behinds (this is complicated...)
static bool spritelistentry_room_less(const SpriteListEntry &e1, const SpriteListEntry &e2) {
if (e1.zorder == e2.zorder) {
if (e1.takesPriorityIfEqual)
return false;
if (e2.takesPriorityIfEqual)
return true;
}
return e1.zorder < e2.zorder;
}
// copy the sorted sprites into the Things To Draw list
static void draw_sprite_list(bool is_room) {
std::sort(_GP(sprlist).begin(), _GP(sprlist).end(), is_room ? spritelistentry_room_less : spritelistentry_less);
_GP(thingsToDrawList).insert(_GP(thingsToDrawList).end(),
_GP(sprlist).begin(), _GP(sprlist).end());
}
// Push the gathered list of sprites into the active graphic renderer
void put_sprite_list_on_screen(bool in_room);
//
//------------------------------------------------------------------------
void repair_alpha_channel(Bitmap *dest, Bitmap *bgpic) {
// Repair the alpha channel, because sprites may have been drawn
// over it by the buttons, etc
int theWid = (dest->GetWidth() < bgpic->GetWidth()) ? dest->GetWidth() : bgpic->GetWidth();
int theHit = (dest->GetHeight() < bgpic->GetHeight()) ? dest->GetHeight() : bgpic->GetHeight();
for (int y = 0; y < theHit; y++) {
unsigned int *destination = ((unsigned int *)dest->GetScanLineForWriting(y));
unsigned int *source = ((unsigned int *)bgpic->GetScanLineForWriting(y));
for (int x = 0; x < theWid; x++) {
destination[x] |= (source[x] & 0xff000000);
}
}
}
// used by GUI renderer to draw images
// NOTE: use_alpha arg is for backward compatibility (legacy draw modes)
void draw_gui_sprite(Bitmap *ds, int pic, int x, int y, bool use_alpha, BlendMode blend_mode) {
draw_gui_sprite(ds, use_alpha, x, y, _GP(spriteset)[pic],
(_GP(game).SpriteInfos[pic].Flags & SPF_ALPHACHANNEL) != 0, blend_mode);
}
void draw_gui_sprite(Bitmap *ds, bool use_alpha, int x, int y, Bitmap *sprite, bool src_has_alpha,
BlendMode blend_mode, int alpha) {
if (alpha <= 0)
return;
const bool ds_has_alpha = (ds->GetColorDepth() == 32);
if (use_alpha && _GP(game).options[OPT_NEWGUIALPHA] == kGuiAlphaRender_Proper) {
GfxUtil::DrawSpriteBlend(ds, Point(x, y), sprite, blend_mode, ds_has_alpha, src_has_alpha, alpha);
}
// Backwards-compatible drawing
else if (use_alpha && ds_has_alpha && (_GP(game).options[OPT_NEWGUIALPHA] == kGuiAlphaRender_AdditiveAlpha) && (alpha == 0xFF)) {
if (src_has_alpha)
set_additive_alpha_blender();
else
set_opaque_alpha_blender();
ds->TransBlendBlt(sprite, x, y);
} else {
GfxUtil::DrawSpriteWithTransparency(ds, sprite, x, y, alpha);
}
}
void draw_gui_sprite_v330(Bitmap *ds, int pic, int x, int y, bool use_alpha, BlendMode blend_mode) {
draw_gui_sprite(ds, pic, x, y, use_alpha && (_G(loaded_game_file_version) >= kGameVersion_330), blend_mode);
}
// Avoid freeing and reallocating the memory if possible
Bitmap *recycle_bitmap(Bitmap *bimp, int coldep, int wid, int hit, bool make_transparent) {
if (bimp != nullptr) {
// same colour depth, width and height -> reuse
if ((bimp->GetColorDepth() == coldep) && (bimp->GetWidth() == wid)
&& (bimp->GetHeight() == hit)) {
if (make_transparent) {
bimp->ClearTransparent();
}
return bimp;
}
delete bimp;
}
bimp = make_transparent ? BitmapHelper::CreateTransparentBitmap(wid, hit, coldep) :
BitmapHelper::CreateBitmap(wid, hit, coldep);
return bimp;
}
void recycle_bitmap(std::unique_ptr &bimp, int coldep, int wid, int hit, bool make_transparent) {
bimp.reset(recycle_bitmap(bimp.release(), coldep, wid, hit, make_transparent));
}
// Get the local tint at the specified X & Y co-ordinates, based on
// room regions and SetAmbientTint
// tint_amnt will be set to 0 if there is no tint enabled
// if this is the case, then light_lev holds the light level (0=none)
void get_local_tint(int xpp, int ypp, int nolight,
int *tint_amnt, int *tint_r, int *tint_g,
int *tint_b, int *tint_lit,
int *light_lev) {
int tint_level = 0, light_level = 0;
int tint_amount = 0;
int tint_red = 0;
int tint_green = 0;
int tint_blue = 0;
int tint_light = 255;
if (nolight == 0) {
int onRegion = 0;
if ((_GP(play).ground_level_areas_disabled & GLED_EFFECTS) == 0) {
// check if the player is on a region, to find its
// light/tint level
onRegion = GetRegionIDAtRoom(xpp, ypp);
if (onRegion == 0) {
// when walking, he might just be off a walkable area
onRegion = GetRegionIDAtRoom(xpp - 3, ypp);
if (onRegion == 0)
onRegion = GetRegionIDAtRoom(xpp + 3, ypp);
if (onRegion == 0)
onRegion = GetRegionIDAtRoom(xpp, ypp - 3);
if (onRegion == 0)
onRegion = GetRegionIDAtRoom(xpp, ypp + 3);
}
}
if ((onRegion > 0) && (onRegion < MAX_ROOM_REGIONS)) {
light_level = _GP(thisroom).Regions[onRegion].Light;
tint_level = _GP(thisroom).Regions[onRegion].Tint;
} else if (onRegion <= 0) {
light_level = _GP(thisroom).Regions[0].Light;
tint_level = _GP(thisroom).Regions[0].Tint;
}
int tint_sat = (tint_level >> 24) & 0xFF;
if ((_GP(game).color_depth == 1) || ((tint_level & 0x00ffffff) == 0) ||
(tint_sat == 0))
tint_level = 0;
if (tint_level) {
tint_red = (unsigned char)(tint_level & 0x000ff);
tint_green = (unsigned char)((tint_level >> 8) & 0x000ff);
tint_blue = (unsigned char)((tint_level >> 16) & 0x000ff);
tint_amount = tint_sat;
tint_light = light_level;
}
if (_GP(play).rtint_enabled) {
if (_GP(play).rtint_level > 0) {
// override with room tint
tint_red = _GP(play).rtint_red;
tint_green = _GP(play).rtint_green;
tint_blue = _GP(play).rtint_blue;
tint_amount = _GP(play).rtint_level;
tint_light = _GP(play).rtint_light;
} else {
// override with room light level
tint_amount = 0;
light_level = _GP(play).rtint_light;
}
}
}
// copy to output parameters
*tint_amnt = tint_amount;
*tint_r = tint_red;
*tint_g = tint_green;
*tint_b = tint_blue;
*tint_lit = tint_light;
if (light_lev)
*light_lev = light_level;
}
// Applies the specified RGB Tint or Light Level to the actsps
// sprite indexed with actspsindex
void apply_tint_or_light(int actspsindex, int light_level,
int tint_amount, int tint_red, int tint_green,
int tint_blue, int tint_light, int coldept,
Bitmap *blitFrom) {
// In a 256-colour game, we cannot do tinting or lightning
// (but we can do darkening, if light_level < 0)
if (_GP(game).color_depth == 1) {
if ((light_level > 0) || (tint_amount != 0))
return;
}
auto &actsp = _GP(actsps)[actspsindex];
// we can only do tint/light if the colour depths match
if (_GP(game).GetColorDepth() == actsp.Bmp->GetColorDepth()) {
std::unique_ptr oldwas;
// if the caller supplied a source bitmap, ->Blit from it
// (used as a speed optimisation where possible)
if (blitFrom)
oldwas.reset(blitFrom);
// otherwise, make a new target bmp
else {
oldwas = std::move(actsp.Bmp);
actsp.Bmp.reset(BitmapHelper::CreateBitmap(oldwas->GetWidth(), oldwas->GetHeight(), coldept));
}
Bitmap *active_spr = actsp.Bmp.get();
if (tint_amount) {
// It is an RGB tint
tint_image(active_spr, oldwas.get(), tint_red, tint_green, tint_blue, tint_amount, tint_light);
} else {
// the RGB values passed to set_trans_blender decide whether it will darken
// or lighten sprites ( <128=darken, >128=lighten). The parameter passed
// to LitBlendBlt defines how much it will be darkened/lightened by.
int lit_amnt;
active_spr->FillTransparent();
// It's a light level, not a tint
if (_GP(game).color_depth == 1) {
// 256-col
lit_amnt = (250 - ((-light_level) * 5) / 2);
} else {
// hi-color
if (light_level < 0)
set_my_trans_blender(8, 8, 8, 0);
else
set_my_trans_blender(248, 248, 248, 0);
lit_amnt = abs(light_level) * 2;
}
active_spr->LitBlendBlt(oldwas.get(), 0, 0, lit_amnt);
}
if (oldwas.get() == blitFrom)
oldwas.release();
} else if (blitFrom) {
// sprite colour depth != game colour depth, so don't try and tint
// but we do need to do something, so copy the source
Bitmap *active_spr = actsp.Bmp.get();
active_spr->Blit(blitFrom, 0, 0, 0, 0, active_spr->GetWidth(), active_spr->GetHeight());
}
}
Bitmap *transform_sprite(Bitmap *src, bool src_has_alpha, std::unique_ptr &dst, const Size dst_sz, GraphicFlip flip) {
if ((src->GetSize() == dst_sz) && (flip == kFlip_None))
return src; // No transform: return source image
recycle_bitmap(dst, src->GetColorDepth(), dst_sz.Width, dst_sz.Height, true);
_G(our_eip) = 339;
// If scaled: first scale then optionally mirror
if (src->GetSize() != dst_sz) {
// 8-bit support: ensure that anti-aliasing routines have a palette
// to use for mapping while faded out.
// TODO: find out if this may be moved out and not repeated?
if (_G(in_new_room) > 0)
select_palette(_G(palette));
if (flip != kFlip_None) {
Bitmap tempbmp;
tempbmp.CreateTransparent(dst_sz.Width, dst_sz.Height, src->GetColorDepth());
if ((IS_ANTIALIAS_SPRITES) && !src_has_alpha)
tempbmp.AAStretchBlt(src, RectWH(dst_sz), kBitmap_Transparency);
else
tempbmp.StretchBlt(src, RectWH(dst_sz), kBitmap_Transparency);
dst->FlipBlt(&tempbmp, 0, 0, kFlip_Horizontal);
} else {
if ((IS_ANTIALIAS_SPRITES) && !src_has_alpha)
dst->AAStretchBlt(src, RectWH(dst_sz), kBitmap_Transparency);
else
dst->StretchBlt(src, RectWH(dst_sz), kBitmap_Transparency);
}
if (_G(in_new_room) > 0)
unselect_palette();
} else {
// If not scaled, then simply blit mirrored
dst->FlipBlt(src, 0, 0, kFlip_Horizontal);
}
return dst.get(); // return transformed result
}
// Draws the specified 'sppic' sprite onto _GP(actsps)[useindx] at the
// specified width and height, and flips the sprite if necessary.
// Returns 1 if something was drawn to actsps; returns 0 if no
// scaling or stretching was required, in which case nothing was done
static bool scale_and_flip_sprite(int useindx, int sppic, int newwidth, int newheight, bool hmirror) {
Bitmap *src = _GP(spriteset)[sppic];
Bitmap *result = transform_sprite(src, (_GP(game).SpriteInfos[sppic].Flags & SPF_ALPHACHANNEL) != 0,
_GP(actsps)[useindx].Bmp, Size(newwidth, newheight), hmirror ? kFlip_Horizontal : kFlip_None);
return result != src;
}
// create the actsps[aa] image with the object drawn correctly
// returns 1 if nothing at all has changed and actsps is still
// intact from last time; 0 otherwise
int construct_object_gfx(int aa, int *drawnWidth, int *drawnHeight, bool alwaysUseSoftware) {
bool hardwareAccelerated = !alwaysUseSoftware && _G(gfxDriver)->HasAcceleratedTransform();
if (_GP(spriteset)[_G(objs)[aa].num] == nullptr)
quitprintf("There was an error drawing object %d. Its current sprite, %d, is invalid.", aa, _G(objs)[aa].num);
int coldept = _GP(spriteset)[_G(objs)[aa].num]->GetColorDepth();
const int src_sprwidth = _GP(game).SpriteInfos[_G(objs)[aa].num].Width;
const int src_sprheight = _GP(game).SpriteInfos[_G(objs)[aa].num].Height;
int sprwidth = src_sprwidth;
int sprheight = src_sprheight;
int tint_red, tint_green, tint_blue;
int tint_level, tint_light, light_level;
int zoom_level = 100;
// calculate the zoom level
if ((_G(objs)[aa].flags & OBJF_USEROOMSCALING) == 0) {
zoom_level = _G(objs)[aa].zoom;
} else {
int onarea = get_walkable_area_at_location(_G(objs)[aa].x, _G(objs)[aa].y);
if ((onarea <= 0) && (_GP(thisroom).WalkAreas[0].ScalingFar == 0)) {
// just off the edge of an area -- use the scaling we had
// while on the area
zoom_level = _G(objs)[aa].zoom;
} else
zoom_level = get_area_scaling(onarea, _G(objs)[aa].x, _G(objs)[aa].y);
}
if (zoom_level != 100)
scale_sprite_size(_G(objs)[aa].num, zoom_level, &sprwidth, &sprheight);
_G(objs)[aa].zoom = zoom_level;
// save width/height into parameters if requested
if (drawnWidth)
*drawnWidth = sprwidth;
if (drawnHeight)
*drawnHeight = sprheight;
_G(objs)[aa].last_width = sprwidth;
_G(objs)[aa].last_height = sprheight;
tint_red = tint_green = tint_blue = tint_level = tint_light = light_level = 0;
if (_G(objs)[aa].flags & OBJF_HASTINT) {
// object specific tint, use it
tint_red = _G(objs)[aa].tint_r;
tint_green = _G(objs)[aa].tint_g;
tint_blue = _G(objs)[aa].tint_b;
tint_level = _G(objs)[aa].tint_level;
tint_light = _G(objs)[aa].tint_light;
light_level = 0;
} else if (_G(objs)[aa].flags & OBJF_HASLIGHT) {
light_level = _G(objs)[aa].tint_light;
} else {
// get the ambient or region tint
int ignoreRegionTints = 1;
if (_G(objs)[aa].flags & OBJF_USEREGIONTINTS)
ignoreRegionTints = 0;
get_local_tint(_G(objs)[aa].x, _G(objs)[aa].y, ignoreRegionTints,
&tint_level, &tint_red, &tint_green, &tint_blue,
&tint_light, &light_level);
}
// check whether the image should be flipped
bool isMirrored = false;
if ((_G(objs)[aa].view != (uint16_t)-1) &&
(_GP(views)[_G(objs)[aa].view].loops[_G(objs)[aa].loop].frames[_G(objs)[aa].frame].pic == _G(objs)[aa].num) &&
((_GP(views)[_G(objs)[aa].view].loops[_G(objs)[aa].loop].frames[_G(objs)[aa].frame].flags & VFLG_FLIPSPRITE) != 0)) {
isMirrored = true;
}
const int useindx = aa; // actsps array index
auto &actsp = _GP(actsps)[useindx];
actsp.SpriteID = _G(objs)[aa].num; // for texture sharing
if ((hardwareAccelerated) &&
(_G(walkBehindMethod) != DrawOverCharSprite) &&
(_G(objcache)[aa].image != nullptr) &&
(_G(objcache)[aa].sppic == _G(objs)[aa].num) &&
(actsp.Bmp != nullptr)) {
// HW acceleration
_G(objcache)[aa].tintamnt = tint_level;
_G(objcache)[aa].tintr = tint_red;
_G(objcache)[aa].tintg = tint_green;
_G(objcache)[aa].tintb = tint_blue;
_G(objcache)[aa].tintlight = tint_light;
_G(objcache)[aa].lightlev = light_level;
_G(objcache)[aa].zoom = zoom_level;
_G(objcache)[aa].mirrored = isMirrored;
return 1;
}
if ((!hardwareAccelerated) && (_G(gfxDriver)->HasAcceleratedTransform())) {
// They want to draw it in software mode with the D3D driver,
// so force a redraw
_G(objcache)[aa].sppic = -389538;
}
// If we have the image cached, use it
if ((_G(objcache)[aa].image != nullptr) &&
(_G(objcache)[aa].sppic == _G(objs)[aa].num) &&
(_G(objcache)[aa].tintamnt == tint_level) &&
(_G(objcache)[aa].tintlight == tint_light) &&
(_G(objcache)[aa].tintr == tint_red) &&
(_G(objcache)[aa].tintg == tint_green) &&
(_G(objcache)[aa].tintb == tint_blue) &&
(_G(objcache)[aa].lightlev == light_level) &&
(_G(objcache)[aa].zoom == zoom_level) &&
(_G(objcache)[aa].mirrored == isMirrored)) {
// the image is the same, we can use it cached!
if ((_G(walkBehindMethod) != DrawOverCharSprite) &&
(actsp.Bmp != nullptr))
return 1;
// Check if the X & Y co-ords are the same, too -- if so, there
// is scope for further optimisations
if ((_G(objcache)[aa].x == _G(objs)[aa].x) &&
(_G(objcache)[aa].y == _G(objs)[aa].y) &&
(actsp.Bmp != nullptr) &&
(_G(walk_behind_baselines_changed) == 0))
return 1;
recycle_bitmap(actsp.Bmp, coldept, sprwidth, sprheight);
actsp.Bmp->Blit(_G(objcache)[aa].image, 0, 0, 0, 0, _G(objcache)[aa].image->GetWidth(), _G(objcache)[aa].image->GetHeight());
return 0;
}
// Not cached, so draw the image
bool actspsUsed = false;
if (!hardwareAccelerated) {
// draw the base sprite, scaled and flipped as appropriate
actspsUsed = scale_and_flip_sprite(useindx, _G(objs)[aa].num, sprwidth, sprheight, isMirrored);
}
if (!actspsUsed) {
// ensure actsps exists // CHECKME: why do we need this in hardware accel mode too?
recycle_bitmap(actsp.Bmp, coldept, src_sprwidth, src_sprheight);
}
// direct read from source bitmap, where possible
Bitmap *comeFrom = nullptr;
if (!actspsUsed)
comeFrom = _GP(spriteset)[_G(objs)[aa].num];
// apply tints or lightenings where appropriate, else just copy
// the source bitmap
if (!hardwareAccelerated && ((tint_level > 0) || (light_level != 0))) {
apply_tint_or_light(useindx, light_level, tint_level, tint_red,
tint_green, tint_blue, tint_light, coldept,
comeFrom);
} else if (!actspsUsed) {
actsp.Bmp->Blit(_GP(spriteset)[_G(objs)[aa].num], 0, 0);
}
// Re-use the bitmap if it's the same size
_G(objcache)[aa].image = recycle_bitmap(_G(objcache)[aa].image, coldept, sprwidth, sprheight);
// Create the cached image and store it
_G(objcache)[aa].image->Blit(actsp.Bmp.get(), 0, 0);
_G(objcache)[aa].sppic = _G(objs)[aa].num;
_G(objcache)[aa].tintamnt = tint_level;
_G(objcache)[aa].tintr = tint_red;
_G(objcache)[aa].tintg = tint_green;
_G(objcache)[aa].tintb = tint_blue;
_G(objcache)[aa].tintlight = tint_light;
_G(objcache)[aa].lightlev = light_level;
_G(objcache)[aa].zoom = zoom_level;
_G(objcache)[aa].mirrored = isMirrored;
return 0;
}
// This is only called from draw_screen_background, but it's separated
// to help with profiling the program
void prepare_objects_for_drawing() {
_G(our_eip) = 32;
for (uint32_t aa = 0; aa < _G(croom)->numobj; aa++) {
if (_G(objs)[aa].on != 1) continue;
// offscreen, don't draw
if ((_G(objs)[aa].x >= _GP(thisroom).Width) || (_G(objs)[aa].y < 1))
continue;
int tehHeight;
int actspsIntact = construct_object_gfx(aa, nullptr, &tehHeight, false);
const int useindx = aa; // actsps array index
auto &actsp = _GP(actsps)[useindx];
// update the cache for next time
_G(objcache)[aa].x = _G(objs)[aa].x;
_G(objcache)[aa].y = _G(objs)[aa].y;
int atxp = data_to_game_coord(_G(objs)[aa].x);
int atyp = data_to_game_coord(_G(objs)[aa].y) - tehHeight;
int usebasel = _G(objs)[aa].get_baseline();
if (_G(objs)[aa].flags & OBJF_NOWALKBEHINDS) {
// ignore walk-behinds, do nothing
if (_G(walkBehindMethod) == DrawAsSeparateSprite) {
usebasel += _GP(thisroom).Height;
}
} else if ((!actspsIntact) && (_G(walkBehindMethod) == DrawOverCharSprite)) {
walkbehinds_cropout(actsp.Bmp.get(), atxp, atyp, usebasel);
}
if ((!actspsIntact) || (actsp.Ddb == nullptr)) {
sync_object_texture(actsp, (_GP(game).SpriteInfos[_G(objs)[aa].num].Flags & SPF_ALPHACHANNEL) != 0);
}
if (_G(gfxDriver)->HasAcceleratedTransform()) {
actsp.Ddb->SetFlippedLeftRight(_G(objcache)[aa].mirrored);
actsp.Ddb->SetStretch(_G(objs)[aa].last_width, _G(objs)[aa].last_height);
actsp.Ddb->SetTint(_G(objcache)[aa].tintr, _G(objcache)[aa].tintg, _G(objcache)[aa].tintb, (_G(objcache)[aa].tintamnt * 256) / 100);
if (_G(objcache)[aa].tintamnt > 0) {
if (_G(objcache)[aa].tintlight == 0) // luminance of 0 -- pass 1 to enable
actsp.Ddb->SetLightLevel(1);
else if (_G(objcache)[aa].tintlight < 250)
actsp.Ddb->SetLightLevel(_G(objcache)[aa].tintlight);
else
actsp.Ddb->SetLightLevel(0);
} else if (_G(objcache)[aa].lightlev != 0)
actsp.Ddb->SetLightLevel((_G(objcache)[aa].lightlev * 25) / 10 + 256);
else
actsp.Ddb->SetLightLevel(0);
}
actsp.Ddb->SetAlpha(GfxDef::LegacyTrans255ToAlpha255(_G(objs)[aa].transparent));
add_to_sprite_list(actsp.Ddb, atxp, atyp, usebasel, false);
}
}
// Draws srcimg onto destimg, tinting to the specified level
// Totally overwrites the contents of the destination image
void tint_image(Bitmap *ds, Bitmap *srcimg, int red, int grn, int blu, int light_level, int luminance) {
if ((srcimg->GetColorDepth() != ds->GetColorDepth()) ||
(srcimg->GetColorDepth() <= 8)) {
debug_script_warn("Image tint failed - images must both be hi-color");
// the caller expects something to have been copied
ds->Blit(srcimg, 0, 0, 0, 0, srcimg->GetWidth(), srcimg->GetHeight());
return;
}
// Some games have incorrect data that result in a negative luminance.
// Do the same as the accelerated drivers that use 255 luminance for that case.
if (luminance <= 0)
luminance = 255;
// For performance reasons, we have a separate blender for
// when light is being adjusted and when it is not.
// If luminance >= 250, then normal brightness, otherwise darken
if (luminance >= 250)
set_blender_mode(kTintBlenderMode, red, grn, blu, 0);
else
set_blender_mode(kTintLightBlenderMode, red, grn, blu, 0);
if (light_level >= 100) {
// fully colourised
ds->FillTransparent();
ds->LitBlendBlt(srcimg, 0, 0, luminance);
} else {
// light_level is between -100 and 100 normally; 0-100 in
// this case when it's a RGB tint
light_level = (light_level * 25) / 10;
// Copy the image to the new bitmap
ds->Blit(srcimg, 0, 0, 0, 0, srcimg->GetWidth(), srcimg->GetHeight());
// Render the colourised image to a temporary bitmap,
// then transparently draw it over the original image
Bitmap *finaltarget = BitmapHelper::CreateTransparentBitmap(srcimg->GetWidth(), srcimg->GetHeight(), srcimg->GetColorDepth());
finaltarget->LitBlendBlt(srcimg, 0, 0, luminance);
// customized trans blender to preserve alpha channel
set_my_trans_blender(0, 0, 0, light_level);
ds->TransBlendBlt(finaltarget, 0, 0);
delete finaltarget;
}
}
void prepare_characters_for_drawing() {
int zoom_level, newwidth, newheight, onarea, sppic;
int light_level, coldept;
int tint_red, tint_green, tint_blue, tint_amount, tint_light = 255;
_G(our_eip) = 33;
// draw characters
for (int aa = 0; aa < _GP(game).numcharacters; aa++) {
if (_GP(game).chars[aa].on == 0) continue;
if (_GP(game).chars[aa].room != _G(displayed_room)) continue;
_G(eip_guinum) = aa;
CharacterInfo *chin = &_GP(game).chars[aa];
_G(our_eip) = 330;
// if it's on but set to view -1, they're being silly
if (chin->view < 0) {
quitprintf("!The character '%s' was turned on in the current room (room %d) but has not been assigned a view number.",
chin->name, _G(displayed_room));
}
if (chin->frame >= _GP(views)[chin->view].loops[chin->loop].numFrames)
chin->frame = 0;
if ((chin->loop >= _GP(views)[chin->view].numLoops) ||
(_GP(views)[chin->view].loops[chin->loop].numFrames < 1)) {
warning("The character '%s' could not be displayed because there were no frames in loop %d of view %d.",
chin->name, chin->loop, chin->view + 1);
continue;
}
sppic = _GP(views)[chin->view].loops[chin->loop].frames[chin->frame].pic;
if (sppic < 0)
sppic = 0; // in case it's screwed up somehow
_G(our_eip) = 331;
// sort out the stretching if required
onarea = get_walkable_area_at_character(aa);
_G(our_eip) = 332;
// calculates the zoom level
if (chin->flags & CHF_MANUALSCALING) // character ignores scaling
zoom_level = _GP(charextra)[aa].zoom;
else if ((onarea <= 0) && (_GP(thisroom).WalkAreas[0].ScalingFar == 0)) {
zoom_level = _GP(charextra)[aa].zoom;
// NOTE: room objects don't have this fix
if (zoom_level == 0)
zoom_level = 100;
} else
zoom_level = get_area_scaling(onarea, chin->x, chin->y);
_GP(charextra)[aa].zoom = zoom_level;
tint_red = tint_green = tint_blue = tint_amount = tint_light = light_level = 0;
if (chin->flags & CHF_HASTINT) {
// object specific tint, use it
tint_red = _GP(charextra)[aa].tint_r;
tint_green = _GP(charextra)[aa].tint_g;
tint_blue = _GP(charextra)[aa].tint_b;
tint_amount = _GP(charextra)[aa].tint_level;
tint_light = _GP(charextra)[aa].tint_light;
light_level = 0;
} else if (chin->flags & CHF_HASLIGHT) {
light_level = _GP(charextra)[aa].tint_light;
} else {
get_local_tint(chin->x, chin->y, chin->flags & CHF_NOLIGHTING,
&tint_amount, &tint_red, &tint_green, &tint_blue,
&tint_light, &light_level);
}
_G(our_eip) = 3330;
bool isMirrored = false;
int specialpic = sppic;
bool usingCachedImage = false;
coldept = _GP(spriteset)[sppic]->GetColorDepth();
// adjust the sppic if mirrored, so it doesn't accidentally
// cache the mirrored frame as the real one
if (_GP(views)[chin->view].loops[chin->loop].frames[chin->frame].flags & VFLG_FLIPSPRITE) {
isMirrored = true;
specialpic = -sppic;
}
_G(our_eip) = 3331;
const int useindx = aa + ACTSP_OBJSOFF; // actsps array index
auto &actsp = _GP(actsps)[useindx];
actsp.SpriteID = sppic; // for texture sharing
// if the character was the same sprite and scaling last time,
// just use the cached image
if ((_GP(charcache)[aa].in_use) &&
(_GP(charcache)[aa].sppic == specialpic) &&
(_GP(charcache)[aa].zoom == zoom_level) &&
(_GP(charcache)[aa].tintr == tint_red) &&
(_GP(charcache)[aa].tintg == tint_green) &&
(_GP(charcache)[aa].tintb == tint_blue) &&
(_GP(charcache)[aa].tintamnt == tint_amount) &&
(_GP(charcache)[aa].tintlight == tint_light) &&
(_GP(charcache)[aa].lightlev == light_level)) {
if (_G(walkBehindMethod) == DrawOverCharSprite) {
recycle_bitmap(actsp.Bmp, _GP(charcache)[aa].image->GetColorDepth(), _GP(charcache)[aa].image->GetWidth(), _GP(charcache)[aa].image->GetHeight());
actsp.Bmp->Blit(_GP(charcache)[aa].image, 0, 0);
} else {
usingCachedImage = true;
}
} else if ((_GP(charcache)[aa].in_use) &&
(_GP(charcache)[aa].sppic == specialpic) &&
(_G(gfxDriver)->HasAcceleratedTransform())) {
usingCachedImage = true;
} else if (_GP(charcache)[aa].in_use) {
_GP(charcache)[aa].in_use = false;
}
_G(our_eip) = 3332;
const int src_sprwidth = _GP(game).SpriteInfos[sppic].Width;
const int src_sprheight = _GP(game).SpriteInfos[sppic].Height;
if (zoom_level != 100) {
// it needs to be stretched, so calculate the new dimensions
scale_sprite_size(sppic, zoom_level, &newwidth, &newheight);
_GP(charextra)[aa].width = newwidth;
_GP(charextra)[aa].height = newheight;
} else {
// draw at original size, so just use the sprite width and height
// TODO: store width and height always, that's much simplier to use for reference!
_GP(charextra)[aa].width = 0;
_GP(charextra)[aa].height = 0;
newwidth = src_sprwidth;
newheight = src_sprheight;
}
_G(our_eip) = 3336;
// Calculate the X & Y co-ordinates of where the sprite will be
const int atxp = (data_to_game_coord(chin->x)) - newwidth / 2;
const int atyp = (data_to_game_coord(chin->y) - newheight)
// adjust the Y positioning for the character's Z co-ord
- data_to_game_coord(chin->z);
_GP(charcache)[aa].zoom = zoom_level;
_GP(charcache)[aa].sppic = specialpic;
_GP(charcache)[aa].tintr = tint_red;
_GP(charcache)[aa].tintg = tint_green;
_GP(charcache)[aa].tintb = tint_blue;
_GP(charcache)[aa].tintamnt = tint_amount;
_GP(charcache)[aa].tintlight = tint_light;
_GP(charcache)[aa].lightlev = light_level;
// If cache needs to be re-drawn
if (!_GP(charcache)[aa].in_use) {
// create the base sprite in _GP(actsps)[useindx], which will
// be scaled and/or flipped, as appropriate
bool actspsUsed = false;
if (!_G(gfxDriver)->HasAcceleratedTransform()) {
actspsUsed = scale_and_flip_sprite(useindx, sppic, newwidth, newheight, isMirrored);
}
if (!actspsUsed) {
// ensure actsps exists // CHECKME: why do we need this in hardware accel mode too?
recycle_bitmap(actsp.Bmp, coldept, src_sprwidth, src_sprheight);
}
_G(our_eip) = 335;
if (((light_level != 0) || (tint_amount != 0)) &&
(!_G(gfxDriver)->HasAcceleratedTransform())) {
// apply the lightning or tinting
Bitmap *comeFrom = nullptr;
// if possible, direct read from the source image
if (!actspsUsed)
comeFrom = _GP(spriteset)[sppic];
apply_tint_or_light(useindx, light_level, tint_amount, tint_red,
tint_green, tint_blue, tint_light, coldept,
comeFrom);
} else if (!actspsUsed) {
// no scaling, flipping or tinting was done, so just blit it normally
actsp.Bmp->Blit(_GP(spriteset)[sppic], 0, 0);
}
// update the character cache with the new image
_GP(charcache)[aa].in_use = true;
_GP(charcache)[aa].image = recycle_bitmap(_GP(charcache)[aa].image, coldept, actsp.Bmp->GetWidth(), actsp.Bmp->GetHeight());
_GP(charcache)[aa].image->Blit(actsp.Bmp.get(), 0, 0);
} // end if !cache.inUse
int usebasel = chin->get_baseline();
_G(our_eip) = 336;
const int bgX = atxp + chin->pic_xoffs;
const int bgY = atyp + chin->pic_yoffs;
if (chin->flags & CHF_NOWALKBEHINDS) {
// ignore walk-behinds, do nothing
if (_G(walkBehindMethod) == DrawAsSeparateSprite) {
usebasel += _GP(thisroom).Height;
}
} else if (_G(walkBehindMethod) == DrawOverCharSprite) {
walkbehinds_cropout(actsp.Bmp.get(), bgX, bgY, usebasel);
}
if ((!usingCachedImage) || (actsp.Ddb == nullptr)) {
sync_object_texture(actsp, (_GP(game).SpriteInfos[sppic].Flags & SPF_ALPHACHANNEL) != 0);
}
if (_G(gfxDriver)->HasAcceleratedTransform()) {
actsp.Ddb->SetStretch(newwidth, newheight);
actsp.Ddb->SetFlippedLeftRight(isMirrored);
actsp.Ddb->SetTint(tint_red, tint_green, tint_blue, (tint_amount * 256) / 100);
if (tint_amount != 0) {
if (tint_light == 0) // tint with 0 luminance, pass as 1 instead
actsp.Ddb->SetLightLevel(1);
else if (tint_light < 250)
actsp.Ddb->SetLightLevel(tint_light);
else
actsp.Ddb->SetLightLevel(0);
} else if (light_level != 0)
actsp.Ddb->SetLightLevel((light_level * 25) / 10 + 256);
else
actsp.Ddb->SetLightLevel(0);
}
_G(our_eip) = 337;
chin->actx = atxp;
chin->acty = atyp;
actsp.Ddb->SetAlpha(GfxDef::LegacyTrans255ToAlpha255(chin->transparency));
add_to_sprite_list(actsp.Ddb, bgX, bgY, usebasel, false);
}
}
Bitmap *get_cached_character_image(int charid) {
return _GP(actsps)[charid + ACTSP_OBJSOFF].Bmp.get();
}
Bitmap *get_cached_object_image(int objid) {
return _GP(actsps)[objid].Bmp.get();
}
void add_walkbehind_image(size_t index, Shared::Bitmap *bmp, int x, int y) {
if (_GP(walkbehindobj).size() <= index)
_GP(walkbehindobj).resize(index + 1);
_GP(walkbehindobj)[index].Bmp.reset(); // don't store bitmap if added this way
_GP(walkbehindobj)[index].Ddb = recycle_ddb_bitmap(_GP(walkbehindobj)[index].Ddb, bmp);
_GP(walkbehindobj)[index].Pos = Point(x, y);
}
// Add active room overlays to the sprite list
static void add_roomovers_for_drawing() {
for (size_t i = 0; i < _GP(screenover).size(); ++i) {
auto &over = _GP(screenover)[i];
if (!over.IsRoomLayer()) continue; // not a room layer
if (over.transparency == 255) continue; // skip fully transparent
Point pos = get_overlay_position(over);
add_to_sprite_list(over.ddb, pos.X, pos.Y, over.zorder, false);
}
}
// Compiles a list of room sprites (characters, objects, background)
void prepare_room_sprites() {
// Background sprite is required for the non-software renderers always,
// and for software renderer in case there are overlapping viewports.
// Note that software DDB is just a tiny wrapper around bitmap, so overhead is negligible.
if (_G(current_background_is_dirty) || !_G(roomBackgroundBmp)) {
update_polled_stuff_if_runtime();
_G(roomBackgroundBmp) =
recycle_ddb_bitmap(_G(roomBackgroundBmp), _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic.get(), false, true);
}
if (_G(gfxDriver)->RequiresFullRedrawEachFrame()) {
if (_G(current_background_is_dirty) || _G(walkBehindsCachedForBgNum) != _GP(play).bg_frame) {
if (_G(walkBehindMethod) == DrawAsSeparateSprite) {
walkbehinds_generate_sprites();
}
}
add_thing_to_draw(_G(roomBackgroundBmp), 0, 0);
}
_G(current_background_is_dirty) = false; // Note this is only place where this flag is checked
clear_sprite_list();
if ((_G(debug_flags) & DBG_NOOBJECTS) == 0) {
prepare_objects_for_drawing();
prepare_characters_for_drawing();
add_roomovers_for_drawing();
if ((_G(debug_flags) & DBG_NODRAWSPRITES) == 0) {
_G(our_eip) = 34;
if (_G(walkBehindMethod) == DrawAsSeparateSprite) {
for (size_t wb = 1 /* 0 is "no area" */;
(wb < MAX_WALK_BEHINDS) && (wb < (size_t)_GP(walkbehindobj).size()); ++wb) {
const auto &wbobj = _GP(walkbehindobj)[wb];
if (wbobj.Ddb) {
add_to_sprite_list(wbobj.Ddb, wbobj.Pos.X, wbobj.Pos.Y,
_G(croom)->walkbehind_base[wb], true);
}
}
}
if (pl_any_want_hook(AGSE_PRESCREENDRAW))
add_render_stage(AGSE_PRESCREENDRAW);
draw_sprite_list(true);
}
}
_G(our_eip) = 36;
// Debug room overlay
update_room_debug();
if ((_G(debugRoomMask) != kRoomAreaNone) && _GP(debugRoomMaskObj).Ddb)
add_thing_to_draw(_GP(debugRoomMaskObj).Ddb, 0, 0);
if ((_G(debugMoveListChar) >= 0) && _GP(debugMoveListObj).Ddb)
add_thing_to_draw(_GP(debugMoveListObj).Ddb, 0, 0);
if (pl_any_want_hook(AGSE_POSTROOMDRAW))
add_render_stage(AGSE_POSTROOMDRAW);
}
// Draws the black surface behind (or rather between) the room viewports
void draw_preroom_background() {
if (_G(gfxDriver)->RequiresFullRedrawEachFrame())
return;
update_black_invreg_and_reset(_G(gfxDriver)->GetMemoryBackBuffer());
}
// Draws the room background on the given surface.
//
// NOTE that this is **strictly** for software rendering.
// ds is a full game screen surface, and roomcam_surface is a surface for drawing room camera content to.
// ds and roomcam_surface may be the same bitmap.
// no_transform flag tells to copy dirty regions on roomcam_surface without any coordinate conversion
// whatsoever.
PBitmap draw_room_background(Viewport *view) {
_G(our_eip) = 31;
// For the sake of software renderer, if there is any kind of camera transform required
// except screen offset, we tell it to draw on separate bitmap first with zero transformation.
// There are few reasons for this, primary is that Allegro does not support StretchBlt
// between different colour depths (i.e. it won't correctly stretch blit 16-bit rooms to
// 32-bit virtual screen).
// Also see comment to ALSoftwareGraphicsDriver::RenderToBackBuffer().
const int view_index = view->GetID();
Bitmap *ds = _G(gfxDriver)->GetMemoryBackBuffer();
// If separate bitmap was prepared for this view/camera pair then use it, draw untransformed
// and blit transformed whole surface later.
const bool draw_to_camsurf = _GP(CameraDrawData)[view_index].Frame != nullptr;
Bitmap *roomcam_surface = draw_to_camsurf ? _GP(CameraDrawData)[view_index].Frame.get() : ds;
{
// For software renderer: copy dirty rects onto the virtual screen.
// TODO: that would be SUPER NICE to reorganize the code and move this operation into SoftwareGraphicDriver somehow.
// Because basically we duplicate sprite batch transform here.
auto camera = view->GetCamera();
set_invalidrects_cameraoffs(view_index, camera->GetRect().Left, camera->GetRect().Top);
// TODO: (by CJ)
// the following line takes up to 50% of the game CPU time at
// high resolutions and colour depths - if we can optimise it
// somehow, significant performance gains to be had
update_room_invreg_and_reset(view_index, roomcam_surface, _GP(thisroom).BgFrames[_GP(play).bg_frame].Graphic.get(), draw_to_camsurf);
}
return _GP(CameraDrawData)[view_index].Frame;
}
void draw_fps(const Rect &viewport) {
// TODO: make allocated "fps struct" instead of using static vars!!
static IDriverDependantBitmap *ddb = nullptr;
static Bitmap *fpsDisplay = nullptr;
const int font = FONT_NORMAL;
if (fpsDisplay == nullptr) {
fpsDisplay = CreateCompatBitmap(viewport.GetWidth(), (get_font_surface_height(font) + get_fixed_pixel_size(5)));
}
fpsDisplay->ClearTransparent();
color_t text_color = fpsDisplay->GetCompatibleColor(14);
char base_buffer[20];
if (!isTimerFpsMaxed()) {
snprintf(base_buffer, sizeof(base_buffer), "%d", _G(frames_per_second));
} else {
snprintf(base_buffer, sizeof(base_buffer), "unlimited");
}
char fps_buffer[60];
// Don't display fps if we don't have enough information (because loop count was just reset)
if (!std::isUndefined(_G(fps))) {
snprintf(fps_buffer, sizeof(fps_buffer), "FPS: %2.1f / %s", _G(fps), base_buffer);
} else {
snprintf(fps_buffer, sizeof(fps_buffer), "FPS: --.- / %s", base_buffer);
}
wouttext_outline(fpsDisplay, 1, 1, font, text_color, fps_buffer);
char loop_buffer[60];
snprintf(loop_buffer, sizeof(loop_buffer), "Loop %u", _G(loopcounter));
wouttext_outline(fpsDisplay, viewport.GetWidth() / 2, 1, font, text_color, loop_buffer);
if (ddb)
_G(gfxDriver)->UpdateDDBFromBitmap(ddb, fpsDisplay, false);
else
ddb = _G(gfxDriver)->CreateDDBFromBitmap(fpsDisplay, false);
int yp = viewport.GetHeight() - fpsDisplay->GetHeight();
_G(gfxDriver)->DrawSprite(1, yp, ddb);
invalidate_sprite_glob(1, yp, ddb);
}
// Draw GUI controls as separate sprites
void draw_gui_controls(GUIMain &gui) {
if (_G(all_buttons_disabled) && (GUI::Options.DisabledStyle == kGuiDis_Blackout))
return; // don't draw GUI controls
int draw_index = _GP(guiobjddbref)[gui.ID];
for (int i = 0; i < gui.GetControlCount(); ++i, ++draw_index) {
GUIObject *obj = gui.GetControl(i);
if (!obj->IsVisible() ||
(obj->Width <= 0 || obj->Height <= 0) ||
(!obj->IsEnabled() && (GUI::Options.DisabledStyle == kGuiDis_Blackout)))
continue;
if (!obj->HasChanged())
continue;
auto &objbg = _GP(guiobjbg)[draw_index];
Rect obj_surf = obj->CalcGraphicRect(GUI::Options.ClipControls);
recycle_bitmap(objbg.Bmp, _GP(game).GetColorDepth(), obj_surf.GetWidth(), obj_surf.GetHeight(), true);
obj->Draw(objbg.Bmp.get(), -obj_surf.Left, -obj_surf.Top);
sync_object_texture(objbg, obj->HasAlphaChannel());
objbg.Off = Point(obj_surf.GetLT());
obj->ClearChanged();
}
}
// Draw GUI and overlays of all kinds, anything outside the room space
void draw_gui_and_overlays() {
// Draw gui controls on separate textures if:
// - it is a 3D renderer (software one may require adjustments -- needs testing)
// - not legacy alpha blending (may we implement specific texture blend?)
const bool draw_controls_as_textures =
_G(gfxDriver)->HasAcceleratedTransform()
&& (_GP(game).options[OPT_NEWGUIALPHA] == kGuiAlphaRender_Proper);
if (pl_any_want_hook(AGSE_PREGUIDRAW))
_G(gfxDriver)->DrawSprite(AGSE_PREGUIDRAW, 0, nullptr); // render stage
clear_sprite_list();
// Add active overlays to the sprite list
for (size_t i = 0; i < _GP(screenover).size(); ++i) {
auto &over = _GP(screenover)[i];
if (over.IsRoomLayer()) continue; // not a ui layer
if (over.transparency == 255) continue; // skip fully transparent
Point pos = get_overlay_position(over);
add_to_sprite_list(over.ddb, pos.X, pos.Y, over.zorder, false);
}
// Add GUIs
_G(our_eip) = 35;
if (((_G(debug_flags) & DBG_NOIFACE) == 0) && (_G(displayed_room) >= 0)) {
if (_G(playerchar)->activeinv >= MAX_INV) {
quit("!The player.activeinv variable has been corrupted, probably as a result\n"
"of an incorrect assignment in the game script.");
}
if (_G(playerchar)->activeinv < 1) _G(gui_inv_pic) = -1;
else _G(gui_inv_pic) = _GP(game).invinfo[_G(playerchar)->activeinv].pic;
_G(our_eip) = 37;
// Prepare and update GUI textures
{
for (int index = 0; index < _GP(game).numgui; ++index) {
auto &gui = _GP(guis)[index];
if (!gui.IsDisplayed()) continue; // not on screen
if (!gui.HasChanged() && !gui.HasControlsChanged()) continue; // no changes: no need to update image
if (gui.Transparency == 255) continue; // 100% transparent
_G(eip_guinum) = index;
_G(our_eip) = 372;
const bool draw_with_controls = !draw_controls_as_textures;
if (gui.HasChanged() || (draw_with_controls && gui.HasControlsChanged())) {
auto &gbg = _GP(guibg)[index];
recycle_bitmap(gbg.Bmp, _GP(game).GetColorDepth(), gui.Width, gui.Height, true);
if (draw_with_controls)
gui.DrawWithControls(gbg.Bmp.get());
else
gui.DrawSelf(gbg.Bmp.get());
const bool is_alpha = gui.HasAlphaChannel();
if (is_alpha)
{
if ((_GP(game).options[OPT_NEWGUIALPHA] == kGuiAlphaRender_Legacy) && (gui.BgImage > 0))
{
// old-style (pre-3.0.2) GUI alpha rendering
repair_alpha_channel(gbg.Bmp.get(), _GP(spriteset)[gui.BgImage]);
}
}
sync_object_texture(gbg, is_alpha);
}
_G(our_eip) = 373;
if (!draw_with_controls && gui.HasControlsChanged()) {
draw_gui_controls(gui);
}
_G(our_eip) = 374;
gui.ClearChanged();
}
}
_G(our_eip) = 38;
// Draw the GUIs
for (int index = 0; index < _GP(game).numgui; ++index) {
const auto &gui = _GP(guis)[index];
if (!gui.IsDisplayed()) continue; // not on screen
if (gui.Transparency == 255) continue; // 100% transparent
// Don't draw GUI if "GUIs Turn Off When Disabled"
if ((_GP(game).options[OPT_DISABLEOFF] == kGuiDis_Off) &&
(_G(all_buttons_disabled) >= 0) &&
(gui.PopupStyle != kGUIPopupNoAutoRemove))
continue;
auto *gui_ddb = _GP(guibg)[index].Ddb;
assert(gui_ddb); // Test for missing texture, might happen if not marked for update
if (!gui_ddb) continue;
gui_ddb->SetAlpha(GfxDef::LegacyTrans255ToAlpha255(gui.Transparency));
add_to_sprite_list(gui_ddb, gui.X, gui.Y, gui.ZOrder, false, index);
}
// Poll the GUIs
// TODO: move this out of the draw routine into game update!!
if (IsInterfaceEnabled()) // only poll if the interface is enabled
{
for (auto &gui : _GP(guis)) {
if (!gui.IsDisplayed()) continue; // not on screen
// Don't touch GUI if "GUIs Turn Off When Disabled"
if ((_GP(game).options[OPT_DISABLEOFF] == kGuiDis_Off) &&
(_G(all_buttons_disabled) >= 0) &&
(gui.PopupStyle != kGUIPopupNoAutoRemove))
continue;
gui.Poll(_G(mousex), _G(mousey));
}
}
}
// If not adding gui controls as textures, simply move the resulting sprlist to render
if (!draw_controls_as_textures ||
(_G(all_buttons_disabled) && (GUI::Options.DisabledStyle == kGuiDis_Blackout))) {
draw_sprite_list(false);
put_sprite_list_on_screen(false);
return;
}
// If adding control textures, sort the ui list, and then pass into renderer,
// adding controls and creating sub-batches as necessary
std::sort(_GP(sprlist).begin(), _GP(sprlist).end(), spritelistentry_less);
for (const auto &s : _GP(sprlist)) {
invalidate_sprite(s.x, s.y, s.ddb, false);
_G(gfxDriver)->DrawSprite(s.x, s.y, s.ddb);
if (s.id < 0) continue; // not a group parent (gui)
// Create a sub-batch
_G(gfxDriver)->BeginSpriteBatch(RectWH(s.x, s.y, s.ddb->GetWidth(), s.ddb->GetHeight()),
SpriteTransform(0, 0, 1.f, 1.f, 0.f, s.ddb->GetAlpha()));
const int draw_index = _GP(guiobjddbref)[s.id];
for (const auto &obj_id : _GP(guis)[s.id].GetControlsDrawOrder()) {
GUIObject *obj = _GP(guis)[s.id].GetControl(obj_id);
if (!obj->IsVisible() ||
(obj->Width <= 0 || obj->Height <= 0) ||
(!obj->IsEnabled() && (GUI::Options.DisabledStyle == kGuiDis_Blackout)))
continue;
const auto &obj_tx = _GP(guiobjbg)[draw_index + obj_id];
auto *obj_ddb = obj_tx.Ddb;
assert(obj_ddb); // Test for missing texture, might happen if not marked for update
if (!obj_ddb) continue;
obj_ddb->SetAlpha(GfxDef::LegacyTrans255ToAlpha255(obj->GetTransparency()));
_G(gfxDriver)->DrawSprite(obj->X + obj_tx.Off.X, obj->Y + obj_tx.Off.Y, obj_ddb);
}
_G(gfxDriver)->EndSpriteBatch();
}
_G(our_eip) = 1099;
}
// Push the gathered list of sprites into the active graphic renderer
void put_sprite_list_on_screen(bool in_room) {
for (const auto &t : _GP(thingsToDrawList)) {
assert(t.ddb || (t.renderStage >= 0));
if (t.ddb) {
if (t.ddb->GetAlpha() == 0)
continue; // skip completely invisible things
// mark the image's region as dirty
invalidate_sprite(t.x, t.y, t.ddb, in_room);
// push to the graphics driver
_G(gfxDriver)->DrawSprite(t.x, t.y, t.ddb);
} else if (t.renderStage >= 0) {
// meta entry to run the plugin hook
_G(gfxDriver)->DrawSprite(t.renderStage, 0, nullptr);
}
}
_G(our_eip) = 1100;
}
bool GfxDriverNullSpriteCallback(int x, int y) {
if (_G(displayed_room) < 0) {
// if no room loaded, various stuff won't be initialized yet
return 1;
}
return (pl_run_plugin_hooks(x, y) != 0);
}
void GfxDriverOnInitCallback(void *data) {
pl_run_plugin_init_gfx_hooks(_G(gfxDriver)->GetDriverID(), data);
}
// Schedule room rendering: background, objects, characters
static void construct_room_view() {
draw_preroom_background();
prepare_room_sprites();
// reset the zorders Changed flag now that we've drawn stuff
_G(walk_behind_baselines_changed) = 0;
for (const auto &viewport : _GP(play).GetRoomViewportsZOrdered()) {
if (!viewport->IsVisible())
continue;
auto camera = viewport->GetCamera();
if (!camera)
continue;
const Rect &view_rc = _GP(play).GetRoomViewportAbs(viewport->GetID());
const Rect &cam_rc = camera->GetRect();
SpriteTransform room_trans(-cam_rc.Left, -cam_rc.Top,
(float)view_rc.GetWidth() / (float)cam_rc.GetWidth(),
(float)view_rc.GetHeight() / (float)cam_rc.GetHeight(),
0.f);
if (_G(gfxDriver)->RequiresFullRedrawEachFrame()) {
// we draw everything as a sprite stack
_G(gfxDriver)->BeginSpriteBatch(view_rc, room_trans, Point(0, _GP(play).shake_screen_yoff), (GraphicFlip)_GP(play).screen_flipped);
} else {
if (_GP(CameraDrawData)[viewport->GetID()].Frame == nullptr && _GP(CameraDrawData)[viewport->GetID()].IsOverlap) {
// room background is prepended to the sprite stack
// TODO: here's why we have blit whole piece of background now:
// if we draw directly to the virtual screen overlapping another
// viewport, then we'd have to also mark and repaint every our
// region located directly over their dirty regions. That would
// require to update regions up the stack, converting their
// coordinates (cam1 -> screen -> cam2).
// It's not clear whether this is worth the effort, but if it is,
// then we'd need to optimise view/cam data first.
_G(gfxDriver)->BeginSpriteBatch(view_rc, room_trans);
_G(gfxDriver)->DrawSprite(0, 0, _G(roomBackgroundBmp));
} else {
// room background is drawn by dirty rects system
PBitmap bg_surface = draw_room_background(viewport.get());
_G(gfxDriver)->BeginSpriteBatch(view_rc, room_trans, Point(), kFlip_None, bg_surface);
}
}
put_sprite_list_on_screen(true);
_G(gfxDriver)->EndSpriteBatch();
}
clear_draw_list();
}
// Schedule ui rendering
static void construct_ui_view() {
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetUIViewportAbs(), SpriteTransform(), Point(0, _GP(play).shake_screen_yoff), (GraphicFlip)_GP(play).screen_flipped);
draw_gui_and_overlays();
_G(gfxDriver)->EndSpriteBatch();
clear_draw_list();
}
// Prepares overlay textures;
// but does not put them on screen yet - that's done in respective construct_*_view functions
static void construct_overlays() {
const bool is_software_mode = !_G(gfxDriver)->HasAcceleratedTransform();
if (_GP(overlaybmp).size() < _GP(screenover).size()) {
_GP(overlaybmp).resize(_GP(screenover).size());
_GP(screenovercache).resize(_GP(screenover).size());
}
for (size_t i = 0; i < _GP(screenover).size(); ++i) {
auto &over = _GP(screenover)[i];
if (over.transparency == 255) continue; // skip fully transparent
bool has_changed = over.HasChanged();
if (over.IsRoomLayer() && (_G(walkBehindMethod) == DrawOverCharSprite)) {
Point pos = get_overlay_position(over);
has_changed |= (pos.X != _GP(screenovercache)[i].X || pos.Y != _GP(screenovercache)[i].Y);
_GP(screenovercache)[i].X = pos.X; _GP(screenovercache)[i].Y = pos.Y;
}
if (has_changed) {
// For software mode - prepare transformed bitmap if necessary
Bitmap *use_bmp = is_software_mode ?
transform_sprite(over.GetImage(), over.HasAlphaChannel(), _GP(overlaybmp)[i], Size(over.scaleWidth, over.scaleHeight)) :
over.GetImage();
if ((_G(walkBehindMethod) == DrawOverCharSprite) && over.IsRoomLayer()) {
if (use_bmp != _GP(overlaybmp)[i].get()) {
recycle_bitmap(_GP(overlaybmp)[i], use_bmp->GetColorDepth(), use_bmp->GetWidth(), use_bmp->GetHeight(), true);
_GP(overlaybmp)[i]->Blit(use_bmp);
}
Point pos = get_overlay_position(over);
walkbehinds_cropout(_GP(overlaybmp)[i].get(), pos.X, pos.Y, over.zorder);
use_bmp = _GP(overlaybmp)[i].get();
}
over.ddb = recycle_ddb_sprite(over.ddb, over.GetSpriteNum(), use_bmp, over.HasAlphaChannel());
over.ClearChanged();
}
assert(over.ddb); // Test for missing texture, might happen if not marked for update
if (!over.ddb) continue;
over.ddb->SetStretch(over.scaleWidth, over.scaleHeight);
over.ddb->SetAlpha(GfxDef::LegacyTrans255ToAlpha255(over.transparency));
}
}
void construct_game_scene(bool full_redraw) {
_G(gfxDriver)->ClearDrawLists();
if (_GP(play).fast_forward)
return;
_G(our_eip) = 3;
// React to changes to viewports and cameras (possibly from script) just before the render
_GP(play).UpdateViewports();
_G(gfxDriver)->UseSmoothScaling(IS_ANTIALIAS_SPRITES);
_G(gfxDriver)->RenderSpritesAtScreenResolution(_GP(usetup).RenderAtScreenRes, _GP(usetup).Supersampling);
pl_run_plugin_hooks(AGSE_PRERENDER, 0);
// Possible reasons to invalidate whole screen for the software renderer
if (full_redraw || _GP(play).screen_tint > 0 || _GP(play).shakesc_length > 0)
invalidate_screen();
// Overlays may be both in rooms and ui layer, prepare their textures beforehand
construct_overlays();
// TODO: move to game update! don't call update during rendering pass!
// IMPORTANT: keep the order same because sometimes script may depend on it
if (_G(displayed_room) >= 0)
_GP(play).UpdateRoomCameras();
// Stage: room viewports
if (_GP(play).screen_is_faded_out == 0 && _GP(play).complete_overlay_on == 0) {
if (_G(displayed_room) >= 0) {
construct_room_view();
} else if (!_G(gfxDriver)->RequiresFullRedrawEachFrame()) {
// black it out so we don't get cursor trails
// TODO: this is possible to do with dirty rects system now too (it can paint black rects outside of room viewport)
_G(gfxDriver)->GetMemoryBackBuffer()->Fill(0);
}
}
_G(our_eip) = 4;
// Stage: UI overlay
if (_GP(play).screen_is_faded_out == 0) {
construct_ui_view();
}
}
void construct_game_screen_overlay(bool draw_mouse) {
if (pl_any_want_hook(AGSE_POSTSCREENDRAW)) {
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetMainViewport(),
SpriteTransform(), Point(0, _GP(play).shake_screen_yoff),
(GraphicFlip)_GP(play).screen_flipped);
_G(gfxDriver)->DrawSprite(AGSE_POSTSCREENDRAW, 0, nullptr);
_G(gfxDriver)->EndSpriteBatch();
}
// TODO: find out if it's okay to move cursor animation and state update
// to the update loop instead of doing it in the drawing routine
// update animating mouse cursor
ags_domouse(); // update mouse pos (mousex, mousey)
if (_GP(game).mcurs[_G(cur_cursor)].view >= 0) {
// only on mousemove, and it's not moving
if (((_GP(game).mcurs[_G(cur_cursor)].flags & MCF_ANIMMOVE) != 0) &&
(_G(mousex) == _G(lastmx)) && (_G(mousey) == _G(lastmy)));
// only on hotspot, and it's not on one
else if (((_GP(game).mcurs[_G(cur_cursor)].flags & MCF_HOTSPOT) != 0) &&
(GetLocationType(game_to_data_coord(_G(mousex)), game_to_data_coord(_G(mousey))) == 0))
set_new_cursor_graphic(_GP(game).mcurs[_G(cur_cursor)].pic);
else if (_G(mouse_delay) > 0) _G(mouse_delay)--;
else {
int viewnum = _GP(game).mcurs[_G(cur_cursor)].view;
int loopnum = 0;
if (loopnum >= _GP(views)[viewnum].numLoops)
quitprintf("An animating mouse cursor is using view %d which has no loops", viewnum + 1);
if (_GP(views)[viewnum].loops[loopnum].numFrames < 1)
quitprintf("An animating mouse cursor is using view %d which has no frames in loop %d", viewnum + 1, loopnum);
_G(mouse_frame)++;
if (_G(mouse_frame) >= _GP(views)[viewnum].loops[loopnum].numFrames)
_G(mouse_frame) = 0;
set_new_cursor_graphic(_GP(views)[viewnum].loops[loopnum].frames[_G(mouse_frame)].pic);
_G(mouse_delay) = _GP(views)[viewnum].loops[loopnum].frames[_G(mouse_frame)].speed + _GP(game).mcurs[_G(cur_cursor)].animdelay;
CheckViewFrame(viewnum, loopnum, _G(mouse_frame));
}
_G(lastmx) = _G(mousex);
_G(lastmy) = _G(mousey);
}
if (_GP(play).screen_is_faded_out == 0) {
// Stage: mouse cursor
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetMainViewport(), SpriteTransform(), Point(0, _GP(play).shake_screen_yoff), (GraphicFlip)_GP(play).screen_flipped);
if (draw_mouse && !_GP(play).mouse_cursor_hidden) {
_G(gfxDriver)->DrawSprite(_G(mousex) - _G(hotx), _G(mousey) - _G(hoty), _G(mouseCursor));
invalidate_sprite(_G(mousex) - _G(hotx), _G(mousey) - _G(hoty), _G(mouseCursor), false);
}
// Stage: screen fx
if (_GP(play).screen_tint >= 1)
_G(gfxDriver)->SetScreenTint(_GP(play).screen_tint & 0xff, (_GP(play).screen_tint >> 8) & 0xff, (_GP(play).screen_tint >> 16) & 0xff);
_G(gfxDriver)->EndSpriteBatch();
// Stage: legacy letterbox mode borders (has its own sprite batch)
render_black_borders();
}
if (_GP(play).screen_is_faded_out != 0 && _G(gfxDriver)->RequiresFullRedrawEachFrame()) {
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetMainViewport(), SpriteTransform());
_G(gfxDriver)->SetScreenFade(_GP(play).fade_to_red, _GP(play).fade_to_green, _GP(play).fade_to_blue);
_G(gfxDriver)->EndSpriteBatch();
}
}
void construct_engine_overlay() {
const Rect &viewport = RectWH(_GP(game).GetGameRes());
_G(gfxDriver)->BeginSpriteBatch(viewport, SpriteTransform());
// draw the debug console, if appropriate
if ((_GP(play).debug_mode > 0) && (_G(display_console) != 0)) {
const int font = FONT_NORMAL;
int ypp = 1;
int txtspacing = get_font_linespacing(font);
int barheight = get_text_lines_surf_height(font, DEBUG_CONSOLE_NUMLINES - 1) + 4;
if (_G(debugConsoleBuffer) == nullptr) {
_G(debugConsoleBuffer) = CreateCompatBitmap(viewport.GetWidth(), barheight);
}
color_t draw_color = _G(debugConsoleBuffer)->GetCompatibleColor(15);
_G(debugConsoleBuffer)->FillRect(Rect(0, 0, viewport.GetWidth() - 1, barheight), draw_color);
color_t text_color = _G(debugConsoleBuffer)->GetCompatibleColor(16);
for (int jj = _G(first_debug_line); jj != _G(last_debug_line); jj = (jj + 1) % DEBUG_CONSOLE_NUMLINES) {
wouttextxy(_G(debugConsoleBuffer), 1, ypp, font, text_color, _G(debug_line)[jj].GetCStr());
ypp += txtspacing;
}
if (_G(debugConsole) == nullptr)
_G(debugConsole) = _G(gfxDriver)->CreateDDBFromBitmap(_G(debugConsoleBuffer), false, true);
else
_G(gfxDriver)->UpdateDDBFromBitmap(_G(debugConsole), _G(debugConsoleBuffer), false);
_G(gfxDriver)->DrawSprite(0, 0, _G(debugConsole));
invalidate_sprite_glob(0, 0, _G(debugConsole));
}
if (_G(display_fps) != kFPS_Hide)
draw_fps(viewport);
_G(gfxDriver)->EndSpriteBatch();
}
static void update_shakescreen() {
// TODO: unify blocking and non-blocking shake update
_GP(play).shake_screen_yoff = 0;
if (_GP(play).shakesc_length > 0) {
if ((_G(loopcounter) % _GP(play).shakesc_delay) < (_GP(play).shakesc_delay / 2))
_GP(play).shake_screen_yoff = _GP(play).shakesc_amount;
}
}
void debug_draw_room_mask(RoomAreaMask mask) {
_G(debugRoomMask) = mask;
if (mask == kRoomAreaNone)
return;
Bitmap *bmp;
switch (mask) {
case kRoomAreaHotspot: bmp = _GP(thisroom).HotspotMask.get(); break;
case kRoomAreaWalkBehind: bmp = _GP(thisroom).WalkBehindMask.get(); break;
case kRoomAreaWalkable: bmp = prepare_walkable_areas(-1); break;
case kRoomAreaRegion: bmp = _GP(thisroom).RegionMask.get(); break;
default: return;
}
// Software mode scaling
// note we don't use transparency in software mode - may be slow in hi-res games
if (!_G(gfxDriver)->HasAcceleratedTransform() &&
(mask != kRoomAreaWalkBehind) &&
(bmp->GetSize() != Size(_GP(thisroom).Width, _GP(thisroom).Height))) {
recycle_bitmap(_GP(debugRoomMaskObj).Bmp,
bmp->GetColorDepth(), _GP(thisroom).Width, _GP(thisroom).Height);
_GP(debugRoomMaskObj).Bmp->StretchBlt(bmp, RectWH(0, 0, _GP(thisroom).Width, _GP(thisroom).Height));
bmp = _GP(debugRoomMaskObj).Bmp.get();
}
_GP(debugRoomMaskObj).Ddb = recycle_ddb_bitmap(_GP(debugRoomMaskObj).Ddb, bmp, false, true);
_GP(debugRoomMaskObj).Ddb->SetAlpha(150);
_GP(debugRoomMaskObj).Ddb->SetStretch(_GP(thisroom).Width, _GP(thisroom).Height);
}
void debug_draw_movelist(int charnum) {
_G(debugMoveListChar) = charnum;
}
void update_room_debug() {
if (_G(debugRoomMask) == kRoomAreaWalkable) {
Bitmap *bmp = prepare_walkable_areas(-1);
// Software mode scaling
if (!_G(gfxDriver)->HasAcceleratedTransform() && (_GP(thisroom).MaskResolution > 1)) {
recycle_bitmap(_GP(debugRoomMaskObj).Bmp,
bmp->GetColorDepth(), _GP(thisroom).Width, _GP(thisroom).Height);
_GP(debugRoomMaskObj).Bmp->StretchBlt(bmp, RectWH(0, 0, _GP(thisroom).Width, _GP(thisroom).Height));
bmp = _GP(debugRoomMaskObj).Bmp.get();
}
_GP(debugRoomMaskObj).Ddb = recycle_ddb_bitmap(_GP(debugRoomMaskObj).Ddb, bmp, false, true);
_GP(debugRoomMaskObj).Ddb->SetAlpha(150);
_GP(debugRoomMaskObj).Ddb->SetStretch(_GP(thisroom).Width, _GP(thisroom).Height);
}
if (_G(debugMoveListChar) >= 0) {
const int mult = _G(gfxDriver)->HasAcceleratedTransform() ? _GP(thisroom).MaskResolution : 1;
if (_G(gfxDriver)->HasAcceleratedTransform())
recycle_bitmap(_GP(debugMoveListObj).Bmp, _GP(game).GetColorDepth(),
_GP(thisroom).WalkAreaMask->GetWidth(), _GP(thisroom).WalkAreaMask->GetHeight(), true);
else
recycle_bitmap(_GP(debugMoveListObj).Bmp, _GP(game).GetColorDepth(),
_GP(thisroom).Width, _GP(thisroom).Height, true);
if (_GP(game).chars[_G(debugMoveListChar)].walking > 0) {
int mlsnum = _GP(game).chars[_G(debugMoveListChar)].walking;
if (_GP(game).chars[_G(debugMoveListChar)].walking >= TURNING_AROUND)
mlsnum %= TURNING_AROUND;
const MoveList &cmls = _GP(mls)[mlsnum];
for (int i = 0; i < cmls.numstage - 1; i++) {
short srcx = short((cmls.pos[i] >> 16) & 0x00ffff);
short srcy = short(cmls.pos[i] & 0x00ffff);
short targetx = short((cmls.pos[i + 1] >> 16) & 0x00ffff);
short targety = short(cmls.pos[i + 1] & 0x00ffff);
_GP(debugMoveListObj).Bmp->DrawLine(Line(srcx / mult, srcy / mult, targetx / mult, targety / mult),
MakeColor(i + 1));
}
}
sync_object_texture(_GP(debugMoveListObj));
_GP(debugMoveListObj).Ddb->SetAlpha(150);
_GP(debugMoveListObj).Ddb->SetStretch(_GP(thisroom).Width, _GP(thisroom).Height);
}
}
// Draw everything
void render_graphics(IDriverDependantBitmap *extraBitmap, int extraX, int extraY) {
// Don't render if skipping cutscene
if (_GP(play).fast_forward)
return;
// Don't render if we've just entered new room and are before fade-in
// TODO: find out why this is not skipped for 8-bit games
if ((_G(in_new_room) > 0) & (_GP(game).color_depth > 1))
return;
// TODO: find out if it's okay to move shake to update function
update_shakescreen();
construct_game_scene(false);
_G(our_eip) = 5;
// TODO: extraBitmap is a hack, used to place an additional gui element
// on top of the screen. Normally this should be a part of the game UI stage.
if (extraBitmap != nullptr) {
_G(gfxDriver)->BeginSpriteBatch(_GP(play).GetUIViewportAbs(), SpriteTransform(), Point(0, _GP(play).shake_screen_yoff), (GraphicFlip)_GP(play).screen_flipped);
invalidate_sprite(extraX, extraY, extraBitmap, false);
_G(gfxDriver)->DrawSprite(extraX, extraY, extraBitmap);
_G(gfxDriver)->EndSpriteBatch();
}
construct_game_screen_overlay(true);
render_to_screen();
if (!SHOULD_QUIT && !_GP(play).screen_is_faded_out) {
// always update the palette, regardless of whether the plugin
// vetos the screen update
if (_G(bg_just_changed)) {
setpal();
_G(bg_just_changed) = 0;
}
}
_G(screen_is_dirty) = false;
}
} // namespace AGS3