aboutsummaryrefslogtreecommitdiff
path: root/sp/src/game/server/TemplateEntities.h
blob: 6d0fa1b0ef7b92f4ae1583138ba04d2f31ce2f54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Template entities are used by spawners to create copies of entities
//			that were configured by the level designer. This allows us to spawn
//			entities with arbitrary sets of key/value data and entity I/O
//			connections.
//
//=============================================================================//

#ifndef TEMPLATEENTITIES_H
#define TEMPLATEENTITIES_H
#ifdef _WIN32
#pragma once
#endif

#include "isaverestore.h"

class CBaseEntity;
class CPointTemplate;

int			Templates_Add(CBaseEntity *pEntity, const char *pszMapData, int nLen);
string_t	Templates_FindByIndex( int iIndex );
int			Templates_GetStringSize( int iIndex );
string_t	Templates_FindByTargetName(const char *pszName);
void		Templates_ReconnectIOForGroup( CPointTemplate *pGroup );

// Some templates have Entity I/O connecting the entities within the template.
// Unique versions of these templates need to be created whenever they're instanced.
void		Templates_StartUniqueInstance( void );
bool		Templates_IndexRequiresEntityIOFixup( int iIndex );
char		*Templates_GetEntityIOFixedMapData( int iIndex );

// Save / Restore
ISaveRestoreBlockHandler *GetTemplateSaveRestoreBlockHandler( void );

#endif // TEMPLATEENTITIES_H