amxmodx/dlls/ts/tsfun/tsfun.cpp

144 lines
3.8 KiB
C++
Raw Normal View History

2005-08-02 02:14:14 +04:00
/*
* Copyright (c) 2003-2004 Lukasz Wlasinski
*
* This file is part of TS XMod.
*
* TS XMod 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 2 of the License, or (at
* your option) any later version.
*
* TS XMod 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 TS XMod; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
*
*/
#include "tsfun.h"
#include "CNatives.h"
int Powerup = -1;
int KungFoo = -1; //-1 is an invalid forward so initiate this to that
void OnPluginsLoaded()
{
//mymodule_Touch - the forward name
//ET_IGNORE - means PLUGIN_HANDLED will be ignored (other option is ET_STOP)
//FP_CELL - first parameter is a normal cell
//FP_CELL - second parameter is a normal cell
//FP_DONE - that's the end of the parameter descriptions
KungFoo = MF_RegisterForward("KungFoo_Attack", ET_STOP, FP_CELL, FP_FLOAT,FP_FLOAT, FP_DONE);
Powerup = MF_RegisterForward("client_powerup", ET_IGNORE, FP_CELL, FP_CELL, FP_DONE);
}
void check_powerup(edict_s *player)
{
CPlayer *pPlayer = GET_PLAYER_POINTER(player);
int offset1 = 423;
#ifdef __linux__
offset1 += 5;
#endif
int id = ENTINDEX(player);
int val3 = *((int *)player->pvPrivateData + offset1);
if(pPlayer->set_423 == -1)
{
pPlayer->set_423 = val3;
return;
}
else if(pPlayer->set_423 != val3) MF_ExecuteForward(Powerup, id,val3);
}
void check_kungfoo(edict_s *player)
{
CPlayer *pPlayer = GET_PLAYER_POINTER(player);
int offset1 = 454;
int offset2 = 455;
#ifdef __linux__
offset1 += 5;
offset2 += 5;
#endif
int id = ENTINDEX(player);
float val4 = *((float *)player->pvPrivateData + offset1);
float val5 = *((float *)player->pvPrivateData + offset2);
if(pPlayer->set_454 == -1.0)
{
pPlayer->set_454 = val4;
pPlayer->set_455 = val5;
return;
}
else
{
if(pPlayer->set_454 != val4 || pPlayer->set_455 != val5)
{
int check = MF_ExecuteForward(KungFoo, id,val4,val5);
if(check)
{
*((float *)player->pvPrivateData + offset1) = 0.0;
*((float *)player->pvPrivateData + offset2) = 0.0;
pPlayer->set_454 = -1.0;
pPlayer->set_455 = -1.0;
}
}
}
}
void PlayerPreThink_Post(edict_s *player)
{
check_powerup(player);
check_kungfoo(player);
RETURN_META(MRES_IGNORED);
}
void ServerActivate_Post( edict_t *pEdictList, int edictCount, int clientMax )
{
for( int i = 1; i <= gpGlobals->maxClients; ++i )
GET_PLAYER_POINTER_I(i)->Init( i , pEdictList + i );
RETURN_META(MRES_IGNORED);
}
void ServerDeactivate()
{
int i;
for(i = 1;i<=gpGlobals->maxClients; ++i){
CPlayer *pPlayer = GET_PLAYER_POINTER_I(i);
pPlayer->Disconnect();
}
// clear custom weapons info
for ( i=TSMAX_WEAPONS-TSMAX_CUSTOMWPNS;i<TSMAX_WEAPONS;i++)
weaponData[i].custom = false;
RETURN_META(MRES_IGNORED);
}
void OnAmxxAttach()
{
gKnifeOffset = TSKNIFE_OFFSET;
MF_AddNatives( base_Natives );
}