/* =========================================================================== ARX FATALIS GPL Source Code Copyright (C) 1999-2010 Arkane Studios SA, a ZeniMax Media company. This file is part of the Arx Fatalis GPL Source Code ('Arx Fatalis Source Code'). Arx Fatalis Source Code is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Arx Fatalis Source Code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Arx Fatalis Source Code. If not, see . In addition, the Arx Fatalis Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Arx Fatalis Source Code. If not, please request a copy in writing from Arkane Studios at the address below. If you have questions concerning this license or the applicable additional terms, you may contact in writing Arkane Studios, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA. =========================================================================== */ ////////////////////////////////////////////////////////////////////////////////////// // @@ @@@ @@@ @@ @@@@@ // // @@@ @@@@@@ @@@ @@ @@@@ @@@ @@@ // // @@@ @@@@@@@ @@@ @@@@ @@@@ @@ @@@@ // // @@@ @@ @@@@ @@@ @@@@@ @@@@@@ @@@ @@@ // // @@@@@ @@ @@@@ @@@ @@@@@ @@@@@@@ @@@ @ @@@ // // @@@@@ @@ @@@@ @@@@@@@@ @@@@ @@@ @@@@@ @@ @@@@@@@ // // @@ @@@ @@ @@@@ @@@@@@@ @@@ @@@ @@@@@@ @@ @@@@ // // @@@ @@@ @@@ @@@@ @@@@@ @@@@@@@@@ @@@@@@@ @@@ @@@@ // // @@@ @@@@ @@@@@@@ @@@@@@ @@@ @@@@ @@@ @@@ @@@ @@@@ // // @@@@@@@@ @@@@@ @@@@@@@@@@ @@@ @@@ @@@ @@@ @@@ @@@@@ // // @@@ @@@@ @@@@ @@@ @@@@@@@ @@@ @@@ @@@@ @@@ @@@@ @@@@@ // //@@@ @@@@ @@@@@ @@@ @@@@@@ @@ @@@ @@@@ @@@@@@@ @@@@@ @@@@@ // //@@@ @@@@@ @@@@@ @@@@ @@@ @@ @@ @@@@ @@@@@@@ @@@@@@@@@ // //@@@ @@@@ @@@@@@@ @@@@ @@ @@ @@@@ @@@@@ @@@@@ // //@@@ @@@@ @@@@@@@ @@@@ @@ @@ @@@@ @@@@@ @@ // //@@@ @@@ @@@ @@@@@ @@ @@@ // // @@@ @@@ @@ @@ STUDIOS // ////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////// // ARX_Equipment ////////////////////////////////////////////////////////////////////////////////////// // // Description: // ARX_Equipment // // Updates: (date) (person) (update) // // Code: Cyril Meynier // // Copyright (c) 1999-2001 ARKANE Studios SA. All rights reserved ////////////////////////////////////////////////////////////////////////////////////// #ifndef ARX_EQUIPMENT_H #define ARX_EQUIPMENT_H #include "eeriepoly.h" #include "arx_player.h" //----------------------------------------------------------------------------- #define WEAPON_BARE 0 #define WEAPON_DAGGER 1 #define WEAPON_1H 2 #define WEAPON_2H 3 #define WEAPON_BOW 4 #define OBJECT_TYPE_WEAPON 1 #define OBJECT_TYPE_DAGGER (1<<1) #define OBJECT_TYPE_1H (1<<2) #define OBJECT_TYPE_2H (1<<3) #define OBJECT_TYPE_BOW (1<<4) #define OBJECT_TYPE_SHIELD (1<<5) #define OBJECT_TYPE_FOOD (1<<6) #define OBJECT_TYPE_GOLD (1<<7) #define OBJECT_TYPE_ARMOR (1<<8) #define OBJECT_TYPE_HELMET (1<<9) #define OBJECT_TYPE_RING (1<<10) #define OBJECT_TYPE_LEGGINGS (1<<11) #define EQUIP_SLOT_RING_LEFT 0 #define EQUIP_SLOT_RING_RIGHT 1 #define EQUIP_SLOT_WEAPON 2 #define EQUIP_SLOT_SHIELD 3 #define EQUIP_SLOT_TORCH 4 #define EQUIP_SLOT_ARMOR 5 #define EQUIP_SLOT_HELMET 6 #define EQUIP_SLOT_LEGGINGS 7 #define LAST_RESERVED_SLOT 7 //----------------------------------------------------------------------------- void ARX_EQUIPMENT_Init(); void ARX_EQUIPMENT_Remove_All_Special(INTERACTIVE_OBJ * io); void ARX_EQUIPMENT_SetEquip(INTERACTIVE_OBJ * io, char * param1, char * param2, float val, short flags); void ARX_EQUIPMENT_SetObjectType(INTERACTIVE_OBJ * io, char * temp, long val); unsigned long ARX_EQUIPMENT_GetObjectTypeFlag(char * temp); void ARX_EQUIPMENT_Equip(INTERACTIVE_OBJ * target, INTERACTIVE_OBJ * toequip); void ARX_EQUIPMENT_UnEquip(INTERACTIVE_OBJ * target, INTERACTIVE_OBJ * toequip, long flags = 0); void ARX_EQUIPMENT_ReleaseAll(INTERACTIVE_OBJ * io); void ARX_EQUIPMENT_ReleaseEquipItem(INTERACTIVE_OBJ * io); void ARX_EQUIPMENT_AttachPlayerWeaponToHand(); void ARX_EQUIPMENT_AttachPlayerWeaponToBack(); void ARX_EQUIPMENT_LaunchPlayerReadyWeapon(); void ARX_EQUIPMENT_LaunchPlayerUnReadyWeapon(); long ARX_EQUIPMENT_GetPlayerWeaponType(); float ARX_EQUIPMENT_Apply(INTERACTIVE_OBJ * io, long ident, float trueval); BOOL ARX_EQUIPMENT_Strike_Check(INTERACTIVE_OBJ * io_source, INTERACTIVE_OBJ * io_weapon, float percentaim, long flags, long targ = -1); void ARX_EQUIPMENT_RecreatePlayerMesh(); float ARX_EQUIPMENT_ComputeDamages(INTERACTIVE_OBJ * io_source, INTERACTIVE_OBJ * io_weapon, INTERACTIVE_OBJ * io_target, float ratioaim, EERIE_3D * pos = NULL); void ARX_EQUIPMENT_IdentifyAll(); void ARX_EQUIPMENT_UnEquipAllPlayer(); float ARX_EQUIPMENT_GetSpecialValue(INTERACTIVE_OBJ * io, long val); float GetHitValue(char * name); void ARX_EQUIPMENT_UnEquipPlayerWeapon(); #endif