2022-11-17 13:21:03 +02:00
/*
* CBattleProjectileController . cpp , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
# include "StdInc.h"
# include "CBattleProjectileController.h"
# include "../gui/Geometries.h"
# include "../../lib/CStack.h"
# include "../../lib/mapObjects/CGTownInstance.h"
# include "../CGameInfo.h"
# include "../gui/CAnimation.h"
2022-11-25 16:32:23 +02:00
# include "../gui/CCanvas.h"
2022-11-17 13:21:03 +02:00
# include "CBattleInterface.h"
2022-11-17 18:50:12 +02:00
# include "CBattleSiegeController.h"
2022-11-20 19:11:34 +02:00
# include "CBattleStacksController.h"
2022-11-17 13:21:03 +02:00
# include "CCreatureAnimation.h"
2022-11-25 16:32:23 +02:00
static double calculateCatapultParabolaY ( const Point & from , const Point & dest , int x )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
double facA = 0.005 ; // seems to be constant
2022-11-17 13:21:03 +02:00
// system of 2 linear equations, solutions of which are missing coefficients
// for quadratic equation a*x*x + b*x + c
double eq [ 2 ] [ 3 ] = {
{ static_cast < double > ( from . x ) , 1.0 , from . y - facA * from . x * from . x } ,
{ static_cast < double > ( dest . x ) , 1.0 , dest . y - facA * dest . x * dest . x }
} ;
// solve system via determinants
double det = eq [ 0 ] [ 0 ] * eq [ 1 ] [ 1 ] - eq [ 1 ] [ 0 ] * eq [ 0 ] [ 1 ] ;
double detB = eq [ 0 ] [ 2 ] * eq [ 1 ] [ 1 ] - eq [ 1 ] [ 2 ] * eq [ 0 ] [ 1 ] ;
double detC = eq [ 0 ] [ 0 ] * eq [ 1 ] [ 2 ] - eq [ 1 ] [ 0 ] * eq [ 0 ] [ 2 ] ;
2022-11-25 16:32:23 +02:00
double facB = detB / det ;
double facC = detC / det ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
return facA * pow ( x , 2.0 ) + facB * x + facC ;
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
void ProjectileMissile : : show ( std : : shared_ptr < CCanvas > canvas )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
size_t group = reverse ? 1 : 0 ;
auto image = animation - > getImage ( frameNum , group , true ) ;
if ( image )
{
float progress = float ( step ) / steps ;
Point pos {
CSDL_Ext : : lerp ( from . x , dest . x , progress ) - image - > width ( ) / 2 ,
CSDL_Ext : : lerp ( from . y , dest . y , progress ) - image - > height ( ) / 2 ,
} ;
canvas - > draw ( image , pos ) ;
}
+ + step ;
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
void ProjectileCatapult : : show ( std : : shared_ptr < CCanvas > canvas )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
size_t group = reverse ? 1 : 0 ;
auto image = animation - > getImage ( frameNum , group , true ) ;
if ( image )
{
float progress = float ( step ) / steps ;
int posX = CSDL_Ext : : lerp ( from . x , dest . x , progress ) ;
int posY = calculateCatapultParabolaY ( from , dest , posX ) ;
Point pos ( posX , posY ) ;
canvas - > draw ( image , pos ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
frameNum = ( frameNum + 1 ) % animation - > size ( 0 ) ;
}
+ + step ;
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
void ProjectileRay : : show ( std : : shared_ptr < CCanvas > canvas )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
float progress = float ( step ) / steps ;
Point curr {
CSDL_Ext : : lerp ( from . x , dest . x , progress ) ,
CSDL_Ext : : lerp ( from . y , dest . y , progress ) ,
} ;
Point length = curr - from ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
//select axis to draw ray on, we want angle to be less than 45 degrees so individual sub-rays won't overlap each other
if ( std : : abs ( length . x ) > std : : abs ( length . y ) ) // draw in horizontal axis
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
int y1 = from . y - rayConfig . size ( ) / 2 ;
int y2 = curr . y - rayConfig . size ( ) / 2 ;
int x1 = from . x ;
int x2 = curr . x ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
for ( size_t i = 0 ; i < rayConfig . size ( ) ; + + i )
{
auto ray = rayConfig [ i ] ;
SDL_Color beginColor { ray . r1 , ray . g1 , ray . b1 , ray . a1 } ;
SDL_Color endColor { ray . r2 , ray . g2 , ray . b2 , ray . a2 } ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
canvas - > drawLine ( Point ( x1 , y1 + i ) , Point ( x2 , y2 + i ) , beginColor , endColor ) ;
}
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
else // draw in vertical axis
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
int x1 = from . x - rayConfig . size ( ) / 2 ;
int x2 = curr . x - rayConfig . size ( ) / 2 ;
int y1 = from . y ;
int y2 = curr . y ;
for ( size_t i = 0 ; i < rayConfig . size ( ) ; + + i )
{
auto ray = rayConfig [ i ] ;
SDL_Color beginColor { ray . r1 , ray . g1 , ray . b1 , ray . a1 } ;
SDL_Color endColor { ray . r2 , ray . g2 , ray . b2 , ray . a2 } ;
canvas - > drawLine ( Point ( x1 + i , y1 ) , Point ( x2 + i , y2 ) , beginColor , endColor ) ;
}
2022-11-17 13:21:03 +02:00
}
2022-11-27 17:24:45 +02:00
+ + step ;
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
CBattleProjectileController : : CBattleProjectileController ( CBattleInterface * owner ) :
owner ( owner )
{ }
const CCreature * CBattleProjectileController : : getShooter ( const CStack * stack )
2022-11-20 19:11:34 +02:00
{
2022-11-25 16:32:23 +02:00
const CCreature * creature = stack - > getCreature ( ) ;
if ( creature - > idNumber = = CreatureID : : ARROW_TOWERS )
creature = owner - > siegeController - > getTurretCreature ( ) ;
if ( creature - > animation . missleFrameAngles . empty ( ) )
2022-11-20 19:11:34 +02:00
{
2022-11-25 16:32:23 +02:00
logAnim - > error ( " Mod error: Creature '%s' on the Archer's tower is not a shooter. Mod should be fixed. Trying to use archer's data instead... " , creature - > nameSing ) ;
creature = CGI - > creh - > objects [ CreatureID : : ARCHER ] ;
2022-11-20 19:11:34 +02:00
}
2022-11-25 16:32:23 +02:00
return creature ;
2022-11-20 19:11:34 +02:00
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
bool CBattleProjectileController : : stackUsesRayProjectile ( const CStack * stack )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
return ! getShooter ( stack ) - > animation . projectileRay . empty ( ) ;
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
bool CBattleProjectileController : : stackUsesMissileProjectile ( const CStack * stack )
{
return ! getShooter ( stack ) - > animation . projectileImageName . empty ( ) ;
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
void CBattleProjectileController : : initStackProjectile ( const CStack * stack )
{
if ( ! stackUsesMissileProjectile ( stack ) )
return ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
const CCreature * creature = getShooter ( stack ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
std : : shared_ptr < CAnimation > projectile = std : : make_shared < CAnimation > ( creature - > animation . projectileImageName ) ;
projectile - > preload ( ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
if ( projectile - > size ( 1 ) ! = 0 )
logAnim - > error ( " Expected empty group 1 in stack projectile " ) ;
else
projectile - > createFlippedGroup ( 0 , 1 ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
projectilesCache [ creature - > animation . projectileImageName ] = projectile ;
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
std : : shared_ptr < CAnimation > CBattleProjectileController : : getProjectileImage ( const CStack * stack )
{
const CCreature * creature = getShooter ( stack ) ;
std : : string imageName = creature - > animation . projectileImageName ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
if ( ! projectilesCache . count ( imageName ) )
initStackProjectile ( stack ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
return projectilesCache [ imageName ] ;
}
2022-11-17 13:21:03 +02:00
2022-11-27 17:24:45 +02:00
void CBattleProjectileController : : emitStackProjectile ( const CStack * stack )
{
for ( auto projectile : projectiles )
{
if ( ! projectile - > playing & & projectile - > shooterID = = stack - > ID )
{
projectile - > playing = true ;
return ;
}
}
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
void CBattleProjectileController : : showProjectiles ( std : : shared_ptr < CCanvas > canvas )
{
2022-11-27 17:24:45 +02:00
for ( auto it = projectiles . begin ( ) ; it ! = projectiles . end ( ) ; )
2022-11-25 16:32:23 +02:00
{
2022-11-27 17:24:45 +02:00
auto projectile = * it ;
2022-11-25 16:32:23 +02:00
// Check if projectile is already visible (shooter animation did the shot)
//if (!it->shotDone)
// continue;
2022-11-17 13:21:03 +02:00
2022-11-27 17:24:45 +02:00
if ( projectile - > playing )
projectile - > show ( canvas ) ;
2022-11-25 16:32:23 +02:00
// finished flying
if ( projectile - > step > projectile - > steps )
2022-11-27 17:24:45 +02:00
it = projectiles . erase ( it ) ;
else
it + + ;
2022-11-17 13:21:03 +02:00
}
}
bool CBattleProjectileController : : hasActiveProjectile ( const CStack * stack )
{
for ( auto const & instance : projectiles )
{
2022-11-27 17:24:45 +02:00
if ( instance - > shooterID = = stack - > ID )
2022-11-17 13:21:03 +02:00
{
return true ;
}
}
return false ;
}
void CBattleProjectileController : : createProjectile ( const CStack * shooter , const CStack * target , Point from , Point dest )
{
2022-11-27 20:01:52 +02:00
const CCreature * shooterInfo = getShooter ( shooter ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
std : : shared_ptr < ProjectileBase > projectile ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
if ( ! target )
{
auto catapultProjectile = new ProjectileCatapult ( ) ;
projectile . reset ( catapultProjectile ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
catapultProjectile - > animation = getProjectileImage ( shooter ) ;
catapultProjectile - > wallDamageAmount = 0 ; //FIXME - receive from caller
catapultProjectile - > frameNum = 0 ;
catapultProjectile - > reverse = false ;
catapultProjectile - > step = 0 ;
catapultProjectile - > steps = 0 ;
2022-11-17 13:21:03 +02:00
2022-11-27 20:01:52 +02:00
//double animSpeed = AnimationControls::getProjectileSpeed() / 10;
//catapultProjectile->steps = std::round(std::abs((dest.x - from.x) / animSpeed));
2022-11-17 13:21:03 +02:00
}
else
{
2022-11-25 16:32:23 +02:00
if ( stackUsesRayProjectile ( shooter ) & & stackUsesMissileProjectile ( shooter ) )
{
logAnim - > error ( " Mod error: Creature '%s' has both missile and ray projectiles configured. Mod should be fixed. Using ray projectile configuration... " , shooterInfo - > nameSing ) ;
}
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
if ( stackUsesRayProjectile ( shooter ) )
{
auto rayProjectile = new ProjectileRay ( ) ;
projectile . reset ( rayProjectile ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
rayProjectile - > rayConfig = shooterInfo - > animation . projectileRay ;
}
else if ( stackUsesMissileProjectile ( shooter ) )
{
auto missileProjectile = new ProjectileMissile ( ) ;
projectile . reset ( missileProjectile ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
auto & angles = shooterInfo - > animation . missleFrameAngles ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
missileProjectile - > animation = getProjectileImage ( shooter ) ;
2022-11-27 17:24:45 +02:00
missileProjectile - > reverse = ! owner - > stacksController - > facingRight ( shooter ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
// only frames below maxFrame are usable: anything higher is either no present or we don't know when it should be used
size_t maxFrame = std : : min < size_t > ( angles . size ( ) , missileProjectile - > animation - > size ( 0 ) ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
assert ( maxFrame > 0 ) ;
2022-11-27 17:24:45 +02:00
double projectileAngle = - atan2 ( dest . y - from . y , std : : abs ( dest . x - from . x ) ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
// values in angles array indicate position from which this frame was rendered, in degrees.
2022-11-27 17:24:45 +02:00
// possible range is 90 ... -90, where projectile for +90 will be used for shooting upwards, +0 for shots towards right and -90 for downwards shots
2022-11-25 16:32:23 +02:00
// find frame that has closest angle to one that we need for this shot
int bestID = 0 ;
double bestDiff = fabs ( angles [ 0 ] / 180 * M_PI - projectileAngle ) ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
for ( int i = 1 ; i < maxFrame ; i + + )
2022-11-17 13:21:03 +02:00
{
2022-11-25 16:32:23 +02:00
double currentDiff = fabs ( angles [ i ] / 180 * M_PI - projectileAngle ) ;
if ( currentDiff < bestDiff )
{
bestID = i ;
bestDiff = currentDiff ;
}
2022-11-17 13:21:03 +02:00
}
2022-11-25 16:32:23 +02:00
missileProjectile - > frameNum = bestID ;
2022-11-17 13:21:03 +02:00
}
2022-11-27 20:01:52 +02:00
}
2022-11-17 13:21:03 +02:00
2022-11-27 20:01:52 +02:00
double animSpeed = AnimationControls : : getProjectileSpeed ( ) ; // flight speed of projectile
if ( ! target )
animSpeed * = 0.2 ; // catapult attack needs slower speed
2022-11-27 17:24:45 +02:00
2022-11-27 20:01:52 +02:00
double distanceSquared = ( dest . x - from . x ) * ( dest . x - from . x ) + ( dest . y - from . y ) * ( dest . y - from . y ) ;
double distance = sqrt ( distanceSquared ) ;
projectile - > steps = std : : round ( distance / animSpeed ) ;
if ( projectile - > steps = = 0 )
projectile - > steps = 1 ;
2022-11-17 13:21:03 +02:00
2022-11-25 16:32:23 +02:00
projectile - > from = from ;
projectile - > dest = dest ;
projectile - > shooterID = shooter - > ID ;
projectile - > step = 0 ;
2022-11-27 17:24:45 +02:00
projectile - > playing = false ;
2022-11-25 16:32:23 +02:00
projectiles . push_back ( projectile ) ;
2022-11-17 13:21:03 +02:00
}