File: gun_eside.cpp

package info (click to toggle)
rafkill 1.2.2-3.3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,268 kB
  • sloc: cpp: 13,508; makefile: 64; sh: 14
file content (27 lines) | stat: -rw-r--r-- 689 bytes parent folder | download | duplicates (12)
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
#include "gunobj.h"
#include "gun_eside.h"

#include "weaponobj.h"
#include "hulls/hull_weapon_s_l.h"

#include "trigtable.h"

EnemySide::EnemySide( int d, int al ):
WeaponObject( d, "Side", 0, al, 0, 0 ){}

void EnemySide::MakeShot(int x, int y, vector< SpaceObject * > * Ammo, const vector< SpaceObject * > * fight ) {

	shot_counter = 25;

	const double LARGE_BULLET = 1.6 * 8;
	double dx = Tcos(270-25)*LARGE_BULLET;
	double dy = Tsine(270-25)*LARGE_BULLET;

	Ammo->push_back( new WeaponNode(x+5,y,dx,dy, new SL_WHull(), alignment ) );

	dx = Tcos(270+25)*LARGE_BULLET;
	dy = Tsine(270+25)*LARGE_BULLET;

	Ammo->push_back( new WeaponNode(x-5,y,dx,dy, new SL_WHull(), alignment ) );

}