mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Added missing #includes Added LUA scripting and console Changed the way tracers are visualized, so they work more like real tracers instead of a light fountain Fixed signedness of many grid variables used in GetMouseMapPos calls Fixed enemy weapon choosing: Sometimes a mortar is chosen but later rejected, but the grenade class was not reset. Caused assertion failure Added checks so enemies don't try to chuck RPG grenades with their hands Now possible to shoot a someone in the head if he's in water Fixed InitSightArrays to also clear soldier interrupt duel points. This was causing an assertion failure elsewhere in the code because the interrupt list still had soldiers on it sometimes when this function was called. Soldiers are much less willing to forfeit their turn over an attempt to use more APs than they have Removed early setting of muzzle flash. This would allow enemies to get an interrupt before you even fired. Fixed item dropping by AI. If AI tried to drop something while standing it would cause deadlock Change to greatly speed up closing the sector inventory window in an unloaded sector Added conditional compile flag to always give robot weapon ready advantage, even for 360 degree sighting Check builddefines.h for the conditional flags. Of greatest interest might be LUA_CONSOLE. This will cause the game to bring up a command console when run. However this console is severely lacking in many areas. If anybody knows of an open-source terminal/console that could be used instead, it would be appreciated. The existing console does bad things when you try to close it, and since it counts as a separate app, it pauses the game while it has focus. LUA scripting is very limited, basically just proof of concept. There is one global variable, the Soldiers array. An array index gives you the soldier in that slot in the currently loaded sector. The soldier has a few things that can be accessed: name (short name); fullname (long name); grid (current grid #, can be changed); walkto(grid) (function to walk to another grid); runto(grid) (function to run to another grid) git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@924 3b4a5df2-a311-0410-b5c6-a8a6f20db521
192 lines
8.4 KiB
C
192 lines
8.4 KiB
C
#ifndef __XML_H
|
|
#define __XML_H
|
|
|
|
#include "armsdealerinvinit.h"
|
|
#include "EnemyItemDrops.h"
|
|
#include "Loading Screen.h"
|
|
|
|
enum
|
|
{
|
|
ELEMENT_NONE = 0,
|
|
ELEMENT_LIST,
|
|
ELEMENT,
|
|
ELEMENT_PROPERTY,
|
|
}
|
|
typedef PARSE_STAGE;
|
|
|
|
#define MAX_CHAR_DATA_LENGTH 500
|
|
|
|
#define TABLEDATA_DIRECTORY "TableData\\"
|
|
|
|
#define GERMAN_PREFIX "German."
|
|
#define RUSSIAN_PREFIX "Russian."
|
|
|
|
#define ATTACHMENTSFILENAME "Attachments.xml"
|
|
#define ATTACHMENTINFOFILENAME "AttachmentInfo.xml"
|
|
#define ITEMSFILENAME "Items.xml"
|
|
#define WEAPONSFILENAME "Weapons.xml"
|
|
#define LAUNCHABLESFILENAME "Launchables.xml"
|
|
#define COMPATIBLEFACEITEMSFILENAME "CompatibleFaceItems.xml"
|
|
#define MERGESFILENAME "Merges.xml"
|
|
#define ATTACHMENTCOMBOMERGESFILENAME "AttachmentComboMerges.xml"
|
|
#define MAGAZINESFILENAME "Magazines.xml"
|
|
#define ARMOURSFILENAME "Armours.xml"
|
|
#define EXPLOSIVESFILENAME "Explosives.xml"
|
|
#define AMMOFILENAME "AmmoStrings.xml"
|
|
#define AMMOTYPESFILENAME "AmmoTypes.xml"
|
|
#define INCOMPATIBLEATTACHMENTSFILENAME "IncompatibleAttachments.xml"
|
|
#define ENEMYGUNCHOICESFILENAME "EnemyGunChoices.xml"
|
|
#define ENEMYITEMCHOICESFILENAME "EnemyItemChoices.xml"
|
|
#define IMPITEMCHOICESFILENAME "IMPItemChoices.xml"
|
|
|
|
#define TONYINVENTORYFILENAME "NPCInventory\\TonyInventory.xml"
|
|
#define DEVININVENTORYFILENAME "NPCInventory\\DevinInventory.xml"
|
|
#define FRANZINVENTORYFILENAME "NPCInventory\\FranzInventory.xml"
|
|
#define KEITHINVENTORYFILENAME "NPCInventory\\KeithInventory.xml"
|
|
#define SAMINVENTORYFILENAME "NPCInventory\\SamInventory.xml"
|
|
#define JAKEINVENTORYFILENAME "NPCInventory\\JakeInventory.xml"
|
|
#define HOWARDINVENTORYFILENAME "NPCInventory\\HowardInventory.xml"
|
|
#define GABBYINVENTORYFILENAME "NPCInventory\\GabbyInventory.xml"
|
|
#define FRANKINVENTORYFILENAME "NPCInventory\\FrankInventory.xml"
|
|
#define ELGININVENTORYFILENAME "NPCInventory\\ElginInventory.xml"
|
|
#define MANNYINVENTORYFILENAME "NPCInventory\\MannyInventory.xml"
|
|
#define HERVEINVENTORYFILENAME "NPCInventory\\HerveInventory.xml"
|
|
#define PETERINVENTORYFILENAME "NPCInventory\\PeterInventory.xml"
|
|
#define ALBERTOINVENTORYFILENAME "NPCInventory\\AlbertoInventory.xml"
|
|
#define CARLOINVENTORYFILENAME "NPCInventory\\CarloInventory.xml"
|
|
#define MICKEYINVENTORYFILENAME "NPCInventory\\MickeyInventory.xml"
|
|
#define ARNIEINVENTORYFILENAME "NPCInventory\\ArnieInventory.xml"
|
|
#define PERKOINVENTORYFILENAME "NPCInventory\\PerkoInventory.xml"
|
|
#define FREDOINVENTORYFILENAME "NPCInventory\\FredoInventory.xml"
|
|
|
|
#define BOBBYRAYSTRINGSFILENAME "BobbyRayStrings.xml"
|
|
#define AMMOCALIBERSTRINGSFILENAME "AmmoCaliberStrings.xml"
|
|
|
|
#define SOUNDSFILENAME "Sounds\\Sounds.xml"
|
|
#define BURSTSOUNDSFILENAME "Sounds\\BurstSounds.xml"
|
|
|
|
#define EXPLOSIONDATAFILENAME "ExplosionData.xml"
|
|
|
|
#define CITYTABLEFILENAME "Map\\Cities.xml"
|
|
#define MOVEMENTCOSTFILENAME "Map\\MovementCosts.xml"
|
|
#define ALTSECTORSFILENAME "Map\\AltSectors.xml"
|
|
#define SAMSITESFILENAME "Map\\SamSites.xml"
|
|
#define ROAMINGMILITIAFILENAME "Map\\RestrictedRoamingMilitia.xml"
|
|
|
|
|
|
#define GARRISONFILENAME "Army\\GarrisonGroups.xml"
|
|
#define PATROLFILENAME "Army\\PatrolGroups.xml"
|
|
#define COMPOSITIONFILENAME "Army\\ArmyComposition.xml"
|
|
|
|
// WANNE: drops filename
|
|
#define ENEMYWEAPONDROPSFILENAME "EnemyWeaponDrops.xml"
|
|
#define ENEMYAMMODROPSFILENAME "EnemyAmmoDrops.xml"
|
|
#define ENEMYEXPLOSIVEDROPSFILENAME "EnemyExplosiveDrops.xml"
|
|
#define ENEMYARMOURDROPSFILENAME "EnemyArmourDrops.xml"
|
|
#define ENEMYMISCDROPSFILENAME "EnemyMiscDrops.xml"
|
|
|
|
// WANNE: Sector loadscreens [2007-05-18]
|
|
#define SECTORLOADSCREENSFILENAME "Map\\SectorLoadscreens.xml"
|
|
|
|
|
|
extern BOOLEAN ReadInItemStats(STR fileName, BOOLEAN localizedVersion);
|
|
extern BOOLEAN WriteItemStats();
|
|
|
|
extern BOOLEAN ReadInAttachmentStats(STR fileName);
|
|
extern BOOLEAN WriteAttachmentStats();
|
|
|
|
extern BOOLEAN ReadInAttachmentInfoStats(STR fileName);
|
|
extern BOOLEAN WriteAttachmentInfoStats();
|
|
|
|
extern BOOLEAN ReadInStringArray(STR fileName);
|
|
extern BOOLEAN WriteStringArray();
|
|
|
|
extern BOOLEAN ReadInMagazineStats(STR fileName);
|
|
extern BOOLEAN WriteMagazineStats();
|
|
|
|
extern BOOLEAN ReadInLaunchableStats(STR fileName);
|
|
extern BOOLEAN WriteLaunchableStats();
|
|
|
|
extern BOOLEAN ReadInCompatibleFaceItemStats(STR fileName);
|
|
extern BOOLEAN WriteCompatibleFaceItemStats();
|
|
|
|
extern BOOLEAN ReadInMergeStats(STR fileName);
|
|
extern BOOLEAN WriteMergeStats();
|
|
|
|
extern BOOLEAN ReadInAttachmentComboMergeStats(STR fileName);
|
|
extern BOOLEAN WriteAttachmentComboMergeStats();
|
|
|
|
extern BOOLEAN ReadInArmourStats(STR fileName);
|
|
extern BOOLEAN WriteArmourStats();
|
|
|
|
extern BOOLEAN ReadInExplosiveStats(STR fileName);
|
|
extern BOOLEAN WriteExplosiveStats();
|
|
|
|
extern BOOLEAN ReadInAmmoStats(STR fileName);
|
|
extern BOOLEAN WriteAmmoStats();
|
|
|
|
extern BOOLEAN WriteIncompatibleAttachmentStats();
|
|
extern BOOLEAN ReadInIncompatibleAttachmentStats(STR fileName);
|
|
|
|
extern BOOLEAN WriteExtendedArmyGunChoicesStats();
|
|
extern BOOLEAN ReadInExtendedArmyGunChoicesStats(STR fileName);
|
|
|
|
extern BOOLEAN WriteArmyItemChoicesStats();
|
|
extern BOOLEAN ReadInArmyItemChoicesStats(STR fileName);
|
|
|
|
extern BOOLEAN WriteIMPItemChoicesStats();
|
|
extern BOOLEAN ReadInIMPItemChoicesStats(STR fileName);
|
|
|
|
extern BOOLEAN WriteInventoryStats (DEALER_POSSIBLE_INV *pInv, STR fileName);
|
|
extern BOOLEAN ReadInInventoryStats (DEALER_POSSIBLE_INV *pInv, STR fileName);
|
|
|
|
extern BOOLEAN WriteSoundArray();
|
|
extern BOOLEAN ReadInSoundArray(STR fileName);
|
|
|
|
extern BOOLEAN ReadInAmmoTypeStats(STR fileName);
|
|
extern BOOLEAN WriteAmmoTypeStats();
|
|
|
|
// WANNE: Enemy drops
|
|
extern BOOLEAN ReadInEnemyWeaponDropsStats(WEAPON_DROPS *pEnemyWeaponDrops, STR fileName);
|
|
extern BOOLEAN WriteEnemyWeaponDropsStats(WEAPON_DROPS *pEnemyWeaponDrops, STR fileName);
|
|
extern BOOLEAN ReadInEnemyAmmoDropsStats(AMMO_DROPS *pEnemyAmmoDrops, STR fileName);
|
|
extern BOOLEAN WriteEnemyAmmoDropsStats(AMMO_DROPS *pEnemyAmmoDrops, STR fileName);
|
|
extern BOOLEAN ReadInEnemyExplosiveDropsStats(EXPLOSIVE_DROPS *pEnemyExplosiveDrops, STR fileName);
|
|
extern BOOLEAN WriteEnemyExplosiveDropsStats(EXPLOSIVE_DROPS *pEnemyExplosiveDrops, STR fileName);
|
|
extern BOOLEAN ReadInEnemyArmourDropsStats(ARMOUR_DROPS *pEnemyArmourDrops, STR fileName);
|
|
extern BOOLEAN WriteEnemyArmourDropsStats(ARMOUR_DROPS *pEnemyArmourDrops, STR fileName);
|
|
extern BOOLEAN ReadInEnemyMiscDropsStats(MISC_DROPS *pEnemyMiscDrops, STR fileName);
|
|
extern BOOLEAN WriteEnemyMiscDropsStats(MISC_DROPS *pEnemyMiscDrops, STR fileName);
|
|
|
|
// WANNE: Sector Loadscreens [2007-05-18]
|
|
extern BOOLEAN ReadInSectorLoadscreensStats(SECTOR_LOADSCREENS *pSectorLoadscreens, STR fileName);
|
|
extern BOOLEAN WriteSectorLoadscreensStats(SECTOR_LOADSCREENS *pSectorLoadscreens, STR fileName);
|
|
|
|
// Lesh: burst sounds and explosion info
|
|
extern BOOLEAN ReadInBurstSoundArray(STR fileName);
|
|
extern BOOLEAN WriteBurstSoundArray();
|
|
extern BOOLEAN ReadInExplosionDataStats(STR fileName);
|
|
extern BOOLEAN WriteExplosionDataStats();
|
|
|
|
//Lesh: strategic movement costs and alternative sectors table
|
|
extern BOOLEAN ReadInStrategicMovementCosts(STR fileName);
|
|
extern BOOLEAN WriteInStrategicMovementCosts(STR fileName);
|
|
extern BOOLEAN ReadInAltSectors(STR fileName);
|
|
extern BOOLEAN WriteInAltSectors(STR fileName);
|
|
|
|
//Lesh: samsite info
|
|
extern BOOLEAN ReadInSAMInfo(STR fileName);
|
|
extern BOOLEAN WriteInSAMInfo(STR fileName);
|
|
|
|
// Lesh: army externalization
|
|
extern BOOLEAN ReadInGarrisonInfo(STR fileName);
|
|
extern BOOLEAN WriteInGarrisonInfo(STR fileName);
|
|
extern BOOLEAN ReadInPatrolInfo(STR fileName);
|
|
extern BOOLEAN WriteInPatrolInfo(STR fileName);
|
|
extern BOOLEAN ReadInArmyCompositionInfo(STR fileName);
|
|
extern BOOLEAN WriteInArmyCompositionInfo(STR fileName);
|
|
|
|
//Kaiden: Roaming Militia Restricted Sectors List
|
|
extern BOOLEAN ReadInRoamingInfo(STR filename);
|
|
#endif
|