1
0
Fork 0

Add: draw the screen at a steady pace, also during fast-forward

During fast-forward, the game was drawing as fast as it could. This
means that the fast-forward was limited also by how fast we could
draw, something that people in general don't expect.

To give an extreme case, if you are fully zoomed out on a busy
map, fast-forward would be mostly limited because of the time it
takes to draw the screen.

By decoupling the draw-tick and game-tick, we can keep the pace
of the draw-tick the same while speeding up the game-tick. To use
the extreme case as example again, if you are fully zoomed out
now, the screen only redraws 33.33 times per second, fast-forwarding
or not. This means fast-forward is much more likely to go at the
same speed, no matter what you are looking at.
pull/8694/head
Patric Stout 2021-02-17 15:04:46 +01:00 committed by Patric Stout
parent 5bfa014505
commit c81c6e5eb7
9 changed files with 117 additions and 99 deletions

View File

@ -1465,7 +1465,6 @@ void GameLoop()
if (_game_mode == GM_BOOTSTRAP) { if (_game_mode == GM_BOOTSTRAP) {
/* Check for UDP stuff */ /* Check for UDP stuff */
if (_network_available) NetworkBackgroundLoop(); if (_network_available) NetworkBackgroundLoop();
InputLoop();
return; return;
} }
@ -1505,8 +1504,6 @@ void GameLoop()
if (!_pause_mode && HasBit(_display_opt, DO_FULL_ANIMATION)) DoPaletteAnimations(); if (!_pause_mode && HasBit(_display_opt, DO_FULL_ANIMATION)) DoPaletteAnimations();
InputLoop();
SoundDriver::GetInstance()->MainLoop(); SoundDriver::GetInstance()->MainLoop();
MusicLoop(); MusicLoop();
} }

View File

@ -24,6 +24,7 @@
#include "../core/math_func.hpp" #include "../core/math_func.hpp"
#include "../framerate_type.h" #include "../framerate_type.h"
#include "../thread.h" #include "../thread.h"
#include "../window_func.h"
#include "allegro_v.h" #include "allegro_v.h"
#include <allegro.h> #include <allegro.h>
@ -449,7 +450,8 @@ void VideoDriver_Allegro::MainLoop()
{ {
auto cur_ticks = std::chrono::steady_clock::now(); auto cur_ticks = std::chrono::steady_clock::now();
auto last_realtime_tick = cur_ticks; auto last_realtime_tick = cur_ticks;
auto next_tick = cur_ticks; auto next_game_tick = cur_ticks;
auto next_draw_tick = cur_ticks;
CheckPaletteAnim(); CheckPaletteAnim();
@ -481,8 +483,14 @@ void VideoDriver_Allegro::MainLoop()
last_realtime_tick += delta; last_realtime_tick += delta;
} }
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode)) { if (cur_ticks >= next_game_tick || (_fast_forward && !_pause_mode)) {
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_game_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
GameLoop();
}
if (cur_ticks >= next_draw_tick) {
next_draw_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
bool old_ctrl_pressed = _ctrl_pressed; bool old_ctrl_pressed = _ctrl_pressed;
@ -498,16 +506,15 @@ void VideoDriver_Allegro::MainLoop()
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged(); if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
GameLoop(); InputLoop();
UpdateWindows(); UpdateWindows();
CheckPaletteAnim(); CheckPaletteAnim();
DrawSurfaceToScreen(); DrawSurfaceToScreen();
} else { }
if (!_fast_forward || _pause_mode) {
CSleep(1); CSleep(1);
NetworkDrawChatMessage();
DrawMouseCursor();
DrawSurfaceToScreen();
} }
} }
} }

View File

@ -636,7 +636,8 @@ void VideoDriver_Cocoa::GameLoop()
{ {
auto cur_ticks = std::chrono::steady_clock::now(); auto cur_ticks = std::chrono::steady_clock::now();
auto last_realtime_tick = cur_ticks; auto last_realtime_tick = cur_ticks;
auto next_tick = cur_ticks; auto next_game_tick = cur_ticks;
auto next_draw_tick = cur_ticks;
for (;;) { for (;;) {
@autoreleasepool { @autoreleasepool {
@ -672,8 +673,14 @@ void VideoDriver_Cocoa::GameLoop()
last_realtime_tick += delta; last_realtime_tick += delta;
} }
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode)) { if (cur_ticks >= next_game_tick || (_fast_forward && !_pause_mode)) {
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_game_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
::GameLoop();
}
if (cur_ticks >= next_draw_tick) {
next_draw_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
bool old_ctrl_pressed = _ctrl_pressed; bool old_ctrl_pressed = _ctrl_pressed;
@ -682,16 +689,15 @@ void VideoDriver_Cocoa::GameLoop()
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged(); if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
::GameLoop(); InputLoop();
UpdateWindows(); UpdateWindows();
this->CheckPaletteAnim(); this->CheckPaletteAnim();
this->Draw(); this->Draw();
} else { }
if (!_fast_forward || _pause_mode) {
CSleep(1); CSleep(1);
NetworkDrawChatMessage();
DrawMouseCursor();
this->Draw();
} }
} }
} }

View File

@ -21,6 +21,7 @@
#include "../core/random_func.hpp" #include "../core/random_func.hpp"
#include "../saveload/saveload.h" #include "../saveload/saveload.h"
#include "../thread.h" #include "../thread.h"
#include "../window_func.h"
#include "dedicated_v.h" #include "dedicated_v.h"
#ifdef __OS2__ #ifdef __OS2__
@ -295,6 +296,7 @@ void VideoDriver_Dedicated::MainLoop()
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
GameLoop(); GameLoop();
InputLoop();
UpdateWindows(); UpdateWindows();
} }

View File

@ -10,6 +10,7 @@
#include "../stdafx.h" #include "../stdafx.h"
#include "../gfx_func.h" #include "../gfx_func.h"
#include "../blitter/factory.hpp" #include "../blitter/factory.hpp"
#include "../window_func.h"
#include "null_v.h" #include "null_v.h"
#include "../safeguards.h" #include "../safeguards.h"
@ -48,6 +49,7 @@ void VideoDriver_Null::MainLoop()
for (i = 0; i < this->ticks; i++) { for (i = 0; i < this->ticks; i++) {
GameLoop(); GameLoop();
InputLoop();
UpdateWindows(); UpdateWindows();
} }
} }

View File

@ -776,8 +776,18 @@ void VideoDriver_SDL::LoopOnce()
last_realtime_tick += delta; last_realtime_tick += delta;
} }
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode)) { if (cur_ticks >= next_game_tick || (_fast_forward && !_pause_mode)) {
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_game_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
/* The gameloop is the part that can run asynchronously. The rest
* except sleeping can't. */
if (_draw_mutex != nullptr) draw_lock.unlock();
GameLoop();
if (_draw_mutex != nullptr) draw_lock.lock();
}
if (cur_ticks >= next_draw_tick) {
next_draw_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
bool old_ctrl_pressed = _ctrl_pressed; bool old_ctrl_pressed = _ctrl_pressed;
@ -792,48 +802,33 @@ void VideoDriver_SDL::LoopOnce()
(keys[SDL_SCANCODE_DOWN] ? 8 : 0); (keys[SDL_SCANCODE_DOWN] ? 8 : 0);
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged(); if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
/* The gameloop is the part that can run asynchronously. The rest InputLoop();
* except sleeping can't. */
if (_draw_mutex != nullptr) draw_lock.unlock();
GameLoop();
if (_draw_mutex != nullptr) draw_lock.lock();
UpdateWindows(); UpdateWindows();
this->CheckPaletteAnim(); this->CheckPaletteAnim();
} else {
/* Release the thread while sleeping */ if (_draw_mutex != nullptr && !HasModalProgress()) {
if (_draw_mutex != nullptr) { _draw_signal->notify_one();
draw_lock.unlock();
CSleep(1);
draw_lock.lock();
} else { } else {
Paint();
}
}
/* Emscripten is running an event-based mainloop; there is already some /* Emscripten is running an event-based mainloop; there is already some
* downtime between each iteration, so no need to sleep. */ * downtime between each iteration, so no need to sleep. */
#ifndef __EMSCRIPTEN__ #ifndef __EMSCRIPTEN__
CSleep(1); if (!_fast_forward || _pause_mode) {
if (_draw_mutex != nullptr) draw_lock.unlock();
CSleep(1);
if (_draw_mutex != nullptr) draw_lock.lock();
}
#endif #endif
}
NetworkDrawChatMessage();
DrawMouseCursor();
}
/* End of the critical part. */
if (_draw_mutex != nullptr && !HasModalProgress()) {
_draw_signal->notify_one();
} else {
/* Oh, we didn't have threads, then just draw unthreaded */
Paint();
}
} }
void VideoDriver_SDL::MainLoop() void VideoDriver_SDL::MainLoop()
{ {
cur_ticks = std::chrono::steady_clock::now(); cur_ticks = std::chrono::steady_clock::now();
last_realtime_tick = cur_ticks; last_realtime_tick = cur_ticks;
next_tick = cur_ticks; next_game_tick = cur_ticks;
this->CheckPaletteAnim(); this->CheckPaletteAnim();

View File

@ -64,7 +64,8 @@ private:
std::chrono::steady_clock::time_point cur_ticks; std::chrono::steady_clock::time_point cur_ticks;
std::chrono::steady_clock::time_point last_realtime_tick; std::chrono::steady_clock::time_point last_realtime_tick;
std::chrono::steady_clock::time_point next_tick; std::chrono::steady_clock::time_point next_game_tick;
std::chrono::steady_clock::time_point next_draw_tick;
int startup_display; int startup_display;
std::thread draw_thread; std::thread draw_thread;

View File

@ -21,6 +21,7 @@
#include "../core/math_func.hpp" #include "../core/math_func.hpp"
#include "../fileio_func.h" #include "../fileio_func.h"
#include "../framerate_type.h" #include "../framerate_type.h"
#include "../window_func.h"
#include "sdl_v.h" #include "sdl_v.h"
#include <SDL.h> #include <SDL.h>
#include <mutex> #include <mutex>
@ -650,7 +651,8 @@ void VideoDriver_SDL::MainLoop()
{ {
auto cur_ticks = std::chrono::steady_clock::now(); auto cur_ticks = std::chrono::steady_clock::now();
auto last_realtime_tick = cur_ticks; auto last_realtime_tick = cur_ticks;
auto next_tick = cur_ticks; auto next_game_tick = cur_ticks;
auto next_draw_tick = cur_ticks;
uint32 mod; uint32 mod;
int numkeys; int numkeys;
Uint8 *keys; Uint8 *keys;
@ -727,8 +729,18 @@ void VideoDriver_SDL::MainLoop()
last_realtime_tick += delta; last_realtime_tick += delta;
} }
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode)) { if (cur_ticks >= next_game_tick || (_fast_forward && !_pause_mode)) {
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_game_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
/* The gameloop is the part that can run asynchronously. The rest
* except sleeping can't. */
if (_draw_mutex != nullptr) draw_lock.unlock();
GameLoop();
if (_draw_mutex != nullptr) draw_lock.lock();
}
if (cur_ticks >= next_draw_tick) {
next_draw_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
bool old_ctrl_pressed = _ctrl_pressed; bool old_ctrl_pressed = _ctrl_pressed;
@ -750,33 +762,22 @@ void VideoDriver_SDL::MainLoop()
#endif #endif
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged(); if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
/* The gameloop is the part that can run asynchronously. The rest InputLoop();
* except sleeping can't. */
if (_draw_mutex != nullptr) draw_lock.unlock();
GameLoop();
if (_draw_mutex != nullptr) draw_lock.lock();
UpdateWindows(); UpdateWindows();
_local_palette = _cur_palette; _local_palette = _cur_palette;
} else {
/* Release the thread while sleeping */ if (_draw_mutex != nullptr && !HasModalProgress()) {
_draw_signal->notify_one();
} else {
CheckPaletteAnim();
DrawSurfaceToScreen();
}
}
if (!_fast_forward || _pause_mode) {
if (_draw_mutex != nullptr) draw_lock.unlock(); if (_draw_mutex != nullptr) draw_lock.unlock();
CSleep(1); CSleep(1);
if (_draw_mutex != nullptr) draw_lock.lock(); if (_draw_mutex != nullptr) draw_lock.lock();
NetworkDrawChatMessage();
DrawMouseCursor();
}
/* End of the critical part. */
if (_draw_mutex != nullptr && !HasModalProgress()) {
_draw_signal->notify_one();
} else {
/* Oh, we didn't have threads, then just draw unthreaded */
CheckPaletteAnim();
DrawSurfaceToScreen();
} }
} }

View File

@ -1135,7 +1135,8 @@ void VideoDriver_Win32::MainLoop()
MSG mesg; MSG mesg;
auto cur_ticks = std::chrono::steady_clock::now(); auto cur_ticks = std::chrono::steady_clock::now();
auto last_realtime_tick = cur_ticks; auto last_realtime_tick = cur_ticks;
auto next_tick = cur_ticks; auto next_game_tick = cur_ticks;
auto next_draw_tick = cur_ticks;
std::thread draw_thread; std::thread draw_thread;
std::unique_lock<std::recursive_mutex> draw_lock; std::unique_lock<std::recursive_mutex> draw_lock;
@ -1205,8 +1206,21 @@ void VideoDriver_Win32::MainLoop()
last_realtime_tick += delta; last_realtime_tick += delta;
} }
if (cur_ticks >= next_tick || (_fast_forward && !_pause_mode)) { if (cur_ticks >= next_game_tick || (_fast_forward && !_pause_mode)) {
next_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK); next_game_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
/* Flush GDI buffer to ensure we don't conflict with the drawing thread. */
GdiFlush();
/* The game loop is the part that can run asynchronously.
* The rest except sleeping can't. */
if (_draw_threaded) draw_lock.unlock();
GameLoop();
if (_draw_threaded) draw_lock.lock();
}
if (cur_ticks >= next_draw_tick) {
next_draw_tick = cur_ticks + std::chrono::milliseconds(MILLISECONDS_PER_TICK);
bool old_ctrl_pressed = _ctrl_pressed; bool old_ctrl_pressed = _ctrl_pressed;
@ -1226,30 +1240,23 @@ void VideoDriver_Win32::MainLoop()
if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged(); if (old_ctrl_pressed != _ctrl_pressed) HandleCtrlChanged();
/* Flush GDI buffer to ensure we don't conflict with the drawing thread. */
GdiFlush();
/* The game loop is the part that can run asynchronously.
* The rest except sleeping can't. */
if (_draw_threaded) draw_lock.unlock();
GameLoop();
if (_draw_threaded) draw_lock.lock();
if (_force_full_redraw) MarkWholeScreenDirty(); if (_force_full_redraw) MarkWholeScreenDirty();
UpdateWindows();
CheckPaletteAnim();
} else {
/* Flush GDI buffer to ensure we don't conflict with the drawing thread. */ /* Flush GDI buffer to ensure we don't conflict with the drawing thread. */
GdiFlush(); GdiFlush();
/* Release the thread while sleeping */ InputLoop();
if (_draw_threaded) draw_lock.unlock(); UpdateWindows();
CSleep(1); CheckPaletteAnim();
if (_draw_threaded) draw_lock.lock(); }
NetworkDrawChatMessage(); if (!_fast_forward || _pause_mode) {
DrawMouseCursor(); /* Flush GDI buffer to ensure we don't conflict with the drawing thread. */
GdiFlush();
if (_draw_mutex != nullptr) draw_lock.unlock();
CSleep(1);
if (_draw_mutex != nullptr) draw_lock.lock();
} }
} }