File: entity_explosion.cpp

package info (click to toggle)
epiphany 0.7.0%2B0-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 7,532 kB
  • sloc: cpp: 6,404; ansic: 141; makefile: 78; sh: 7
file content (86 lines) | stat: -rw-r--r-- 2,278 bytes parent folder | download | duplicates (7)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/***************************************************************************
                          entity_explosion.cpp  -  description
                             -------------------
    begin                : Fri Apr 12 2002
    copyright            : (C) 2002 by Giuseppe D'Aqui'
    email                : kumber@tiscalinet.it
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License, Version 2, as published by  *
 *   the Free Software Foundation.                                   *
 *                                                                         *
 ***************************************************************************/
 

#include "dephine.h"
#include "entity_explosion.h"
#include "entity_all.h"

#include "entity_type.h"

Entity_Explosion::Entity_Explosion(Level* level, Uint32 x, Uint32 y)
{
	current_level=level;
	m_position_x=x;
	m_position_y=y;
	m_type=EXPLOSION;
	Surface_Manager* surf_man = Surface_Manager::instance();
	m_sprite=Sprite(surf_man->get_surface(Surface_Manager::SRF_EXPLOSION));
	m_sprite.set_state(SP_STOP);
	m_exists=true;
	m_transform_to=UNKNOWN;
	m_existing_count=1;

//	m_is_exploding=false;
//	m_just_checked=true;
}

void Entity_Explosion::check_and_do()
{

	if((m_existing_count==0))
	{
    kill();
		if(m_transform_to!=UNKNOWN)
		{
			current_level->set_entity(m_transform_to,m_position_x, m_position_y);
		}
		//if(!(current_level->get_sample(SFX_EXPLOSION)->is_playing()))
		//{
			Sample_Manager::instance()->play(SFX_EXPLOSION);
		//}

		m_exists=false;


	}
	else
	{
		m_existing_count--;
	}
		
//	m_just_checked=true;
}

bool Entity_Explosion::explode()
{
//	m_existing_count--;
//	DEBOUT("entity exploding at "<<m_position_x<<", "<<m_position_y<<" with existing_count="<<m_existing_count<<"\n");
//  if(m_existing_count!=0)
	kill();
	

	return true;
}

void Entity_Explosion::set_transform_to(Entity_Type transform_to)
{
	m_transform_to = transform_to;
}

Entity_Explosion::~Entity_Explosion()
{
}