94 lines
4.5 KiB
C++
94 lines
4.5 KiB
C++
|
#pragma region License
|
|||
|
/*
|
|||
|
License (OLC-3)
|
|||
|
~~~~~~~~~~~~~~~
|
|||
|
|
|||
|
Copyright 2024 Joshua Sigona <sigonasr2@gmail.com>
|
|||
|
|
|||
|
Redistribution and use in source and binary forms, with or without modification,
|
|||
|
are permitted provided that the following conditions are met:
|
|||
|
|
|||
|
1. Redistributions or derivations of source code must retain the above copyright
|
|||
|
notice, this list of conditions and the following disclaimer.
|
|||
|
|
|||
|
2. Redistributions or derivative works in binary form must reproduce the above
|
|||
|
copyright notice. This list of conditions and the following disclaimer must be
|
|||
|
reproduced in the documentation and/or other materials provided with the distribution.
|
|||
|
|
|||
|
3. Neither the name of the copyright holder nor the names of its contributors may
|
|||
|
be used to endorse or promote products derived from this software without specific
|
|||
|
prior written permission.
|
|||
|
|
|||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|||
|
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|||
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|||
|
SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|||
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|||
|
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|||
|
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|||
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|||
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|||
|
SUCH DAMAGE.
|
|||
|
|
|||
|
Portions of this software are copyright <EFBFBD> 2024 The FreeType
|
|||
|
Project (www.freetype.org). Please see LICENSE_FT.txt for more information.
|
|||
|
All rights reserved.
|
|||
|
*/
|
|||
|
#pragma endregion
|
|||
|
#include "AdventuresInLestoria.h"
|
|||
|
#include "BulletTypes.h"
|
|||
|
|
|||
|
INCLUDE_ITEM_SCRIPTS
|
|||
|
INCLUDE_game
|
|||
|
INCLUDE_ANIMATION_DATA
|
|||
|
|
|||
|
void ItemInfo::InitializeScripts(){
|
|||
|
|
|||
|
ITEM_SCRIPTS["Restore"]=[](AiL*game,std::optional<vf2d>targetingPos,ItemProps props){
|
|||
|
for(const auto&[propName,buffType]:NameToBuffType){
|
|||
|
int restoreAmt=props.GetIntProp(propName);
|
|||
|
|
|||
|
game->GetPlayer()->AddBuff(BuffRestorationType::ONE_OFF,NameToBuffType.at(propName),0.01f,float(restoreAmt),0.0f);
|
|||
|
if(restoreAmt>0&&props.PropCount(propName)==3){
|
|||
|
game->GetPlayer()->AddBuff(BuffRestorationType::OVER_TIME,NameToBuffType.at(propName),props.GetFloatProp(propName,2),float(restoreAmt),props.GetFloatProp(propName,1));
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
};
|
|||
|
|
|||
|
for(auto&[key,value]:ItemAttribute::attributes){
|
|||
|
if(!DATA.GetProperty("ItemScript.Buff").HasProperty(key)){
|
|||
|
ERR("WARNING! Buff Item Script does not support Buff "<<std::quoted(value.Name())<<"!");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
ITEM_SCRIPTS["Buff"]=[](AiL*game,std::optional<vf2d>targetingPos,ItemProps props){
|
|||
|
for(auto&[key,value]:ItemAttribute::attributes){
|
|||
|
float intensity=props.GetFloatProp(key,0);
|
|||
|
if(intensity==0.f)continue;
|
|||
|
if(ItemAttribute::Get(key).DisplayAsPercent())intensity/=100;
|
|||
|
game->GetPlayer()->AddBuff(BuffType::STAT_UP,props.GetFloatProp(key,1),intensity,{ItemAttribute::Get(key)});
|
|||
|
}
|
|||
|
return true;
|
|||
|
};
|
|||
|
ITEM_SCRIPTS["RestoreDuringCast"]=[](AiL*game,std::optional<vf2d>targetingPos,ItemProps props){
|
|||
|
for(const auto&[propName,buffType]:NameToBuffType){
|
|||
|
int restoreAmt=props.GetIntProp(propName);
|
|||
|
|
|||
|
game->GetPlayer()->AddBuff(BuffRestorationType::ONE_OFF,NameToBuffType.at(propName),0.01f,float(restoreAmt),0.0f);
|
|||
|
if(restoreAmt>0&&props.PropCount(propName)==3){
|
|||
|
game->GetPlayer()->AddBuff(BuffRestorationType::OVER_TIME_DURING_CAST,NameToBuffType.at(propName),props.GetFloatProp(propName,2),float(restoreAmt),props.GetFloatProp(propName,1));
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
};
|
|||
|
ITEM_SCRIPTS["Projectile"]=[](AiL*game,std::optional<vf2d>targetingPos,ItemProps props){
|
|||
|
const int projectileDamage{props.GetIntProp("Base Damage")+int(game->GetPlayer()->GetAttack()*props.GetFloatProp("Player Damage Mult"))};
|
|||
|
CreateBullet(ThrownProjectile)(game->GetPlayer()->GetPos(),targetingPos.value(),props.GetStringProp("Image"),props.GetFloatProp("Cast Size")/100.f*24,game->GetPlayer()->GetZ(),0.3f,8.f,projectileDamage,game->GetPlayer()->OnUpperLevel(),false,INFINITE,true,WHITE,props.GetFloatProp("Cast Size")/100.f*vf2d{1.f,1.f},0.f,
|
|||
|
Effect{vf2d{},ANIMATION_DATA.at("explosionframes.png").GetTotalAnimationDuration(),"explosionframes.png",game->GetPlayer()->OnUpperLevel(),props.GetFloatProp("Cast Size")/100.f*vf2d{1.f,1.f}},props.GetStringProp("Explode Sound Effect"))EndBullet;
|
|||
|
return true;
|
|||
|
};
|
|||
|
|
|||
|
ITEM_SCRIPTS.SetInitialized();
|
|||
|
LOG(ITEM_SCRIPTS.size()<<" item scripts have been loaded.");
|
|||
|
}
|