From ea4c0557d0b7c2317e03d3d3aaefd6063c99f091 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 26 Mar 2024 01:45:33 +0100 Subject: DWORD replaced with std::uint32_t in non-Win32-related parts With the exception of some netcode. This brings some important questions and solidifies me in pursuing better abstract over definitions. It might also be a good idea to have distinct aliases or compound types for time and (net) identifiers. --- StarsEx/Sim.h | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) (limited to 'StarsEx/Sim.h') diff --git a/StarsEx/Sim.h b/StarsEx/Sim.h index 912a420..6e5a0d4 100644 --- a/StarsEx/Sim.h +++ b/StarsEx/Sim.h @@ -11,16 +11,17 @@ Simulation Universe and Region classes */ -#ifndef Sim_h -#define Sim_h +#pragma once + +#include + +#include +#include -#include "Types.h" -#include "Universe.h" -#include "Scene.h" -#include "Physical.h" #include "Geometry.h" -#include "List.h" -#include "Text.h" +#include "Physical.h" +#include "Scene.h" +#include "Universe.h" // +--------------------------------------------------------------------+ @@ -109,8 +110,8 @@ public: void DestroyShip(Ship* ship); void NetDockShip(Ship* ship, Ship* carrier, FlightDeck* deck); - virtual Ship* FindShipByObjID(DWORD objid); - virtual Shot* FindShotByObjID(DWORD objid); + virtual Ship* FindShipByObjID(std::uint32_t objid); + virtual Shot* FindShotByObjID(std::uint32_t objid); Mission* GetMission() { return mission; } List& GetEvents() { return events; } @@ -166,7 +167,7 @@ public: void ExecEvents(double seconds); void ProcessEventTrigger(int type, int event_id=0, const char* ship=0, int param=0); double MissionClock() const; - DWORD StartTime() const { return start_time; } + std::uint32_t StartTime() const { return start_time; } // Create a list of mission elements based on the current // state of the simulation. Used for multiplayer join in progress. @@ -206,7 +207,7 @@ protected: Mission* mission; NetGame* netgame; - DWORD start_time; + std::uint32_t start_time; }; // +--------------------------------------------------------------------+ @@ -243,8 +244,8 @@ public: bool IsOrbital() const { return type == REAL_SPACE; } bool CanTimeSkip()const; - virtual Ship* FindShipByObjID(DWORD objid); - virtual Shot* FindShotByObjID(DWORD objid); + virtual Ship* FindShipByObjID(std::uint32_t objid); + virtual Shot* FindShotByObjID(std::uint32_t objid); virtual void InsertObject(Ship* ship); virtual void InsertObject(Shot* shot); @@ -321,9 +322,6 @@ protected: List track_database[5]; List links; - DWORD sim_time; + std::uint32_t sim_time; int ai_index; }; - -#endif // Sim_h - -- cgit v1.1