SBSPSS/source/triggers/tcamlock.cpp

75 lines
1.5 KiB
C++
Raw Normal View History

2001-05-04 02:03:49 +02:00
/*=========================================================================
tcamlock.cpp
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
/*----------------------------------------------------------------------
Includes
-------- */
2001-05-29 22:31:02 +02:00
#include "triggers\trigger.h"
2001-05-04 02:03:49 +02:00
#include "triggers\tcamlock.h"
#ifndef __PLAYER_PLAYER_H__
#include "player\player.h"
#endif
/* Std Lib
------- */
/* Data
---- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
/*----------------------------------------------------------------------
Function Prototypes
------------------- */
/*----------------------------------------------------------------------
Vars
---- */
/*----------------------------------------------------------------------
Function:
Purpose:
Params:
Returns:
---------------------------------------------------------------------- */
void CCameraLockTrigger::collidedWith(CThing *_thisThing)
{
2001-05-04 03:35:52 +02:00
CPlayer::CameraBox camBox={m_boxX1,m_boxY1,m_boxX2,m_boxY2};
2001-06-04 14:54:44 +02:00
switch( _thisThing->getThingType() )
{
case TYPE_PLAYER:
{
((CPlayer*)_thisThing)->setCameraBox(camBox);
break;
}
default:
break;
}
2001-05-04 02:03:49 +02:00
}
/*===========================================================================
end */