From 7c425ac4ac17788b2a00bab7e9c4a1f1556d292f Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Tue, 25 Feb 2020 18:24:45 +0100 Subject: Implement ProcessGarages + small cleanup --- src/core/config.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/core/config.h') diff --git a/src/core/config.h b/src/core/config.h index 8d52dac4..f2b9c403 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -1,8 +1,8 @@ #pragma once enum Config { - NUMCDIMAGES = 12, // gta3.img duplicates (not used on PC) - MAX_CDIMAGES = 8, // additional cdimages + NUMCDIMAGES = 12, // gta3.img duplicates (not used on PC) + MAX_CDIMAGES = 8, // additional cdimages MAX_CDCHANNELS = 5, MODELINFOSIZE = 5500, @@ -20,15 +20,15 @@ enum Config { XTRACOMPSMODELSIZE = 2, TWODFXSIZE = 2000, - MAXVEHICLESLOADED = 50, // 70 on mobile + MAXVEHICLESLOADED = 50, // 70 on mobile NUMOBJECTINFO = 168, // object.dat // Pool sizes NUMPTRNODES = 30000, // 26000 on PS2 NUMENTRYINFOS = 5400, // 3200 on PS2 - NUMPEDS = 140, // 90 on PS2 - NUMVEHICLES = 110, // 70 on PS2 + NUMPEDS = 140, // 90 on PS2 + NUMVEHICLES = 110, // 70 on PS2 NUMBUILDINGS = 5500, // 4915 on PS2 NUMTREADABLES = 1214, NUMOBJECTS = 450, @@ -92,6 +92,8 @@ enum Config { NUM_GARAGES = 32, NUM_PROJECTILES = 32, + NUM_WATERCANNONS = 3, + NUMPEDROUTES = 200, NUMPHONES = 50, NUMPEDGROUPS = 31, -- cgit v1.2.3 From a097f225bcc4782820f76cc79b2c9121daae109b Mon Sep 17 00:00:00 2001 From: Filip Gawin Date: Sat, 21 Mar 2020 14:51:30 +0100 Subject: Fixes for review --- src/core/config.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/core/config.h') diff --git a/src/core/config.h b/src/core/config.h index f2b9c403..468e8468 100644 --- a/src/core/config.h +++ b/src/core/config.h @@ -101,6 +101,17 @@ enum Config { NUMVISIBLEENTITIES = 2000, NUMINVISIBLEENTITIES = 150, + + NUM_AUDIOENTITY_EVENTS = 4, + NUM_PED_COMMENTS_BANKS = 2, + NUM_PED_COMMENTS_SLOTS = 20, + + NUM_SOUNDS_SAMPLES_BANKS = 2, + NUM_SOUNDS_SAMPLES_SLOTS = 27, + NUM_AUDIOENTITIES = 200, + + NUM_AUDIO_REFLECTIONS = 5, + NUM_SCRIPT_MAX_ENTITIES = 40, }; // We'll use this once we're ready to become independent of the game -- cgit v1.2.3