You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
963 B
60 lines
963 B
#ifndef WHANDLE_H |
|
#define WHANDLE_H |
|
|
|
#ifndef CLIENT_DLL |
|
|
|
class CBasePlayerItem; |
|
|
|
class EHBasePlayerItem : public EHANDLE |
|
{ |
|
public: |
|
operator CBasePlayerItem *() |
|
{ |
|
return (CBasePlayerItem *)GET_PRIVATE( Get() ); |
|
} |
|
CBasePlayerItem *operator ->() |
|
{ |
|
return (CBasePlayerItem *)GET_PRIVATE( Get() ); |
|
} |
|
template <class T> |
|
operator T() |
|
{ |
|
return (T)GET_PRIVATE( Get() ); |
|
} |
|
template <class T> |
|
T *operator = ( T *pEntity ) |
|
{ |
|
edict_t *e = NULL; |
|
if( pEntity ) |
|
e = pEntity->edict(); |
|
return (T*)CBaseEntity::Instance( Set ( e ) ); |
|
} |
|
|
|
// handle = NULL correctly |
|
int operator = ( int null1 ) |
|
{ |
|
//assert( !null1 ); |
|
Set(0); |
|
return 0; |
|
} |
|
|
|
bool operator !=(EHBasePlayerItem &other) |
|
{ |
|
return Get() != other.Get(); |
|
} |
|
#if 0 |
|
bool operator !=(my_nullptr_t &null1) |
|
{ |
|
return Get() != (edict_t*)0; |
|
} |
|
#endif |
|
bool operator !=(int null1) |
|
{ |
|
return Get() != (edict_t*)null1; |
|
} |
|
}; |
|
#else |
|
#define EHBasePlayerItem CBasePlayerItem* |
|
#endif |
|
|
|
#endif
|
|
|