2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 02.06.2021.
|
|
|
|
//
|
|
|
|
|
2021-10-09 13:41:12 +03:00
|
|
|
#include "../engine/ResourceManager.h"
|
2021-09-13 15:53:43 +03:00
|
|
|
#include "Shotgun.h"
|
2021-10-09 13:41:12 +03:00
|
|
|
#include "../engine/animation/AFunction.h"
|
2021-10-16 20:22:55 +03:00
|
|
|
#include "../ShooterConsts.h"
|
2021-09-13 15:53:43 +03:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2021-10-22 19:42:32 +03:00
|
|
|
Shotgun::Shotgun(int ammo, const std::string& weaponName) : Weapon(weaponName, ShooterConsts::SHOTGUN_OBJ, Vec3D{3, 3, 3}, Vec3D{-1.95, 0.8, 1.5}, Vec3D{0, Consts::PI, 0}) {
|
2021-10-17 19:38:16 +03:00
|
|
|
fireSound = ShooterConsts::SHOTGUN_FIRE_SOUND;
|
|
|
|
reloadSound = ShooterConsts::SHOTGUN_RELOAD_SOUND;
|
2021-09-13 15:53:43 +03:00
|
|
|
|
|
|
|
//reloadSound.setVolume(30);
|
|
|
|
_initialPack = 15;
|
|
|
|
_clipCapacity = 1; // how much ammo can be stored in one clipx
|
|
|
|
_stockAmmo = ammo - _clipCapacity; // how much ammo do you have in stock
|
|
|
|
_clipAmmo = _clipCapacity; // how much ammo do you have in current clip
|
|
|
|
_reloadTime = 1;
|
|
|
|
_fireDelay = 1; // time delay between fires
|
|
|
|
_damage = 400;
|
|
|
|
_spreading = 5;
|
|
|
|
}
|
|
|
|
|
2021-10-17 10:21:10 +03:00
|
|
|
std::map<ObjectNameTag, double>
|
2021-10-22 19:42:32 +03:00
|
|
|
Shotgun::processFire(std::function<IntersectionInformation(const Vec3D&, const Vec3D&)> rayCastFunction, const Vec3D& position, const Vec3D& direction) {
|
2021-10-17 10:21:10 +03:00
|
|
|
std::map<ObjectNameTag, double> damagedPlayers;
|
2021-09-13 15:53:43 +03:00
|
|
|
|
|
|
|
for(int i = 0; i < 15; i++) {
|
2021-10-18 18:30:02 +03:00
|
|
|
std::map<ObjectNameTag, double> damaged = addTrace(rayCastFunction, position, direction);
|
2021-10-16 20:22:55 +03:00
|
|
|
for(auto& player : damaged)
|
|
|
|
damagedPlayers[player.first] += player.second;
|
2021-09-13 15:53:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return damagedPlayers;
|
|
|
|
}
|