From 8617b4a33e85612c87e121f6e1591ce2f08a3912 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 25 Apr 2026 01:16:13 +0200 Subject: [PATCH] smooth visualization mode --- commandline.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/commandline.cpp b/commandline.cpp index c85f63bd..234eb9f6 100644 --- a/commandline.cpp +++ b/commandline.cpp @@ -315,6 +315,20 @@ int arg::readCommon() { no_find_player = true; } + else if(argis("-vizs")) { + PHASE(3); + showstartmenu = false; + start_game(); + popScreenAll(); + clearMessages(); + nohud = true; + mapeditor::drawplayer = false; + no_find_player = true; + game_keys_scroll = true; + smooth_scrolling = true; + touchmode = tmode::drag; + } + else if(argis("-vizhr")) { PHASE(3); showstartmenu = false; @@ -397,6 +411,7 @@ int arg::readCommon() { printf(" -fixx SEED - fix the RNG seed to the given value (cheat)\n"); printf(" -noscr - skip the start menu\n"); printf(" -viz - visualization mode: do not display the game elements\n"); + printf(" -vizs - visualization mode with smooth control\n"); printf(" -g - debug mode: do not use scorefile, fix seed, enable cheat mode\n"); printf(" -nogui - do not start the GUI\n"); printf(" -run - run (before handling other options) until the user presses F10\n");