From 932f5c64c2c2966d9bc9d6833a3fc7a7a18c8ca8 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 11 Apr 2020 19:43:17 +0200 Subject: [PATCH] - moved stats.cpp to common. --- src/CMakeLists.txt | 2 +- src/{utility => common/engine}/stats.cpp | 6 ++++-- src/{utility => common/engine}/stats.h | 0 src/console/c_console.cpp | 12 ++++++------ src/rendering/2d/v_2ddrawer.cpp | 2 ++ src/rendering/2d/v_2ddrawer.h | 5 +++++ src/rendering/2d/v_drawtext.cpp | 19 +++++++++++++++++++ src/rendering/v_video.h | 5 +---- .../vulkan/system/vk_framebuffer.cpp | 2 +- 9 files changed, 39 insertions(+), 14 deletions(-) rename src/{utility => common/engine}/stats.cpp (96%) rename src/{utility => common/engine}/stats.h (100%) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3d89be21f..666e170a2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1131,6 +1131,7 @@ set (PCH_SOURCES common/filesystem/file_whres.cpp common/filesystem/file_directory.cpp common/filesystem/resourcefile.cpp + common/engine/stats.cpp common/engine/sc_man.cpp common/engine/palettecontainer.cpp common/engine/stringtable.cpp @@ -1165,7 +1166,6 @@ set (PCH_SOURCES utility/nodebuilder/nodebuild_extract.cpp utility/nodebuilder/nodebuild_gl.cpp utility/nodebuilder/nodebuild_utility.cpp - utility/stats.cpp utility/m_bbox.cpp utility/v_collection.cpp ) diff --git a/src/utility/stats.cpp b/src/common/engine/stats.cpp similarity index 96% rename from src/utility/stats.cpp rename to src/common/engine/stats.cpp index 7c3d4815a..05cc5b04d 100644 --- a/src/utility/stats.cpp +++ b/src/common/engine/stats.cpp @@ -32,11 +32,13 @@ ** */ -#include "doomtype.h" #include "stats.h" #include "v_video.h" #include "v_text.h" +#include "v_font.h" +#include "c_console.h" #include "c_dispatch.h" +#include "printf.h" FStat *FStat::FirstStat; @@ -114,7 +116,7 @@ void FStat::PrintStat () // Count number of linefeeds but ignore terminating ones. if (stattext[i] == '\n') y -= fontheight; } - screen->DrawText(NewConsoleFont, CR_GREEN, 5 / textScale, y, stattext, + DrawText(twod, NewConsoleFont, CR_GREEN, 5 / textScale, y, stattext, DTA_VirtualWidth, screen->GetWidth() / textScale, DTA_VirtualHeight, screen->GetHeight() / textScale, DTA_KeepRatio, true, TAG_DONE); diff --git a/src/utility/stats.h b/src/common/engine/stats.h similarity index 100% rename from src/utility/stats.h rename to src/common/engine/stats.h diff --git a/src/console/c_console.cpp b/src/console/c_console.cpp index 3d28ff715..160dc8632 100644 --- a/src/console/c_console.cpp +++ b/src/console/c_console.cpp @@ -206,25 +206,25 @@ public: { if (scale == 1) { - screen->DrawChar(CurrentConsoleFont, CR_ORANGE, x, y, '\x1c', TAG_DONE); - screen->DrawText(CurrentConsoleFont, CR_ORANGE, x + CurrentConsoleFont->GetCharWidth(0x1c), y, + DrawChar(twod, CurrentConsoleFont, CR_ORANGE, x, y, '\x1c', TAG_DONE); + DrawText(twod, CurrentConsoleFont, CR_ORANGE, x + CurrentConsoleFont->GetCharWidth(0x1c), y, &Text[StartPos], TAG_DONE); if (cursor) { - screen->DrawChar(CurrentConsoleFont, CR_YELLOW, + DrawChar(twod, CurrentConsoleFont, CR_YELLOW, x + CurrentConsoleFont->GetCharWidth(0x1c) + (CursorPosCells - StartPosCells) * CurrentConsoleFont->GetCharWidth(0xb), y, '\xb', TAG_DONE); } } else { - screen->DrawChar(CurrentConsoleFont, CR_ORANGE, x, y, '\x1c', + DrawChar(twod, CurrentConsoleFont, CR_ORANGE, x, y, '\x1c', DTA_VirtualWidth, screen->GetWidth() / scale, DTA_VirtualHeight, screen->GetHeight() / scale, DTA_KeepRatio, true, TAG_DONE); - screen->DrawText(CurrentConsoleFont, CR_ORANGE, x + CurrentConsoleFont->GetCharWidth(0x1c), y, + DrawText(twod, CurrentConsoleFont, CR_ORANGE, x + CurrentConsoleFont->GetCharWidth(0x1c), y, &Text[StartPos], DTA_VirtualWidth, screen->GetWidth() / scale, DTA_VirtualHeight, screen->GetHeight() / scale, @@ -232,7 +232,7 @@ public: if (cursor) { - screen->DrawChar(CurrentConsoleFont, CR_YELLOW, + DrawChar(twod, CurrentConsoleFont, CR_YELLOW, x + CurrentConsoleFont->GetCharWidth(0x1c) + (CursorPosCells - StartPosCells) * CurrentConsoleFont->GetCharWidth(0xb), y, '\xb', DTA_VirtualWidth, screen->GetWidth() / scale, diff --git a/src/rendering/2d/v_2ddrawer.cpp b/src/rendering/2d/v_2ddrawer.cpp index d35ddc5e9..7330aa9a9 100644 --- a/src/rendering/2d/v_2ddrawer.cpp +++ b/src/rendering/2d/v_2ddrawer.cpp @@ -34,6 +34,8 @@ #include "vm.h" #include "c_buttons.h" +F2DDrawer* twod; + EXTERN_CVAR(Float, transsouls) IMPLEMENT_CLASS(DShape2DTransform, false, false) diff --git a/src/rendering/2d/v_2ddrawer.h b/src/rendering/2d/v_2ddrawer.h index f669656c1..cd5caaa15 100644 --- a/src/rendering/2d/v_2ddrawer.h +++ b/src/rendering/2d/v_2ddrawer.h @@ -173,5 +173,10 @@ public: bool mIsFirstPass = true; }; +extern F2DDrawer* twod; +void DrawText(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, const char* string, int tag_first, ...); +void DrawText(F2DDrawer* twod, FFont* font, int normalcolor, double x, double y, const char32_t* string, int tag_first, ...); +void DrawChar(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, int character, int tag_first, ...); +void DrawTexture(F2DDrawer* drawer, FTexture* img, double x, double y, int tags_first, ...); #endif diff --git a/src/rendering/2d/v_drawtext.cpp b/src/rendering/2d/v_drawtext.cpp index 1c606ebb5..7f88cd4ee 100644 --- a/src/rendering/2d/v_drawtext.cpp +++ b/src/rendering/2d/v_drawtext.cpp @@ -433,6 +433,25 @@ void DFrameBuffer::DrawText(FFont *font, int normalcolor, double x, double y, co DrawTextCommon(font, normalcolor, x, y, string, parms); } +void DrawText(F2DDrawer *twod, FFont* font, int normalcolor, double x, double y, const char32_t* string, int tag_first, ...) +{ + Va_List tags; + DrawParms parms; + + if (font == NULL || string == NULL) + return; + + va_start(tags.list, tag_first); + bool res = screen->ParseDrawTextureTags(nullptr, 0, 0, tag_first, tags, &parms, true); + va_end(tags.list); + if (!res) + { + return; + } + screen->DrawTextCommon(font, normalcolor, x, y, string, parms); +} + + void DFrameBuffer::DrawText(FFont *font, int normalcolor, double x, double y, const char *string, VMVa_List &args) { DrawParms parms; diff --git a/src/rendering/v_video.h b/src/rendering/v_video.h index 105776751..48a872f99 100644 --- a/src/rendering/v_video.h +++ b/src/rendering/v_video.h @@ -357,6 +357,7 @@ class FTexture; class DFrameBuffer { friend void DrawText(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, const char* string, int tag_first, ...); + friend void DrawText(F2DDrawer* twod, FFont* font, int normalcolor, double x, double y, const char32_t* string, int tag_first, ...); friend void DrawChar(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, int character, int tag_first, ...); friend void DrawTexture(F2DDrawer* drawer, FTexture* img, double x, double y, int tags_first, ...); protected: @@ -681,8 +682,4 @@ public: }; -void DrawText(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, const char* string, int tag_first, ...); -void DrawChar(F2DDrawer* drawer, FFont* font, int normalcolor, double x, double y, int character, int tag_first, ...); -void DrawTexture(F2DDrawer* drawer, FTexture* img, double x, double y, int tags_first, ...); - #endif // __V_VIDEO_H__ diff --git a/src/rendering/vulkan/system/vk_framebuffer.cpp b/src/rendering/vulkan/system/vk_framebuffer.cpp index 009143c23..1c0ea5e6d 100644 --- a/src/rendering/vulkan/system/vk_framebuffer.cpp +++ b/src/rendering/vulkan/system/vk_framebuffer.cpp @@ -29,7 +29,7 @@ #include "actor.h" #include "i_time.h" #include "g_game.h" -#include "gamedata/fonts/v_text.h" +#include "v_text.h" #include "hwrenderer/utility/hw_clock.h" #include "hwrenderer/utility/hw_vrmodes.h"