Very cool! 
Does that function consider forts as well then?

Does that function consider forts as well then?
Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!
Quick links for Beyond New Horizons
- Download latest version
- Wiki
- FAQ
- Report bugs here
- Bug Tracker on Github
Quick links for Maelstrom
- Download the latest version of Maelstrom
- Download the latest version of ERAS II
- Download the latest version of New Horizons on Maelstrom
Quick links for PotC: New Horizons
- Download latest version
- Wiki
- FAQ
- Report bugs here
Thanks to YOUR votes, GOG.com now sells:
- Sea Dogs
- Sea Dogs: Caribbean Tales
- Sea Dogs: City of Abandoned Ships
Vote now to add Pirates of the Caribbean to the list!
Quick links for AoP2: Gentlemen of Fortune 2
- Downloads and info
- ModDB Profile
- Forums Archive
A Pirate Podcast with Interviews
Music, Comedy and all things Pirate!
- Episode Guide - About - Subscribe -
- Twitter - Facebook - iTunes - Android -
- Youtube - Fill the Coffers -
//finds ratio of friend power vs. foe power
float FindPowerRatio(int idx)
{
int num = FindNearShips(idx);
ref chr = GetCharacter(idx);
int sidx = sti(chr.curshipnum); // change to array 05-06-27
//if(num == 0) return 0.0;
string tstr = "rel"+RELATION_ENEMY;
if(!CheckAttribute(NearShips[sidx],tstr+".0")) return 1.0; // TY Changing from 0 to 1. Just in case, the usage of it in the morale code should never trigger anyway unless enemies are around, but better to be safe.
float epower = FindPowerOfNearShips(idx, RELATION_ENEMY);
float fpower = FindPowerOfNearShips(idx, RELATION_FRIEND);
Trace("num of near ships found for " + chr + "is " + num + ", friend power " + chr + "is " + fpower + "enemy power " + chr + "is " + epower);
if(epower < 0.01) epower = 0.01; //TY changing to 0.01 to match the new scaling
if(fpower < 0.01) fpower = 0.01;
return epower / fpower;
}
float FindPowerOfNearShips(int idx, int rel)
{
int num = FindNearShips(idx);
ref chr = GetCharacter(idx);
ref rCannon = GetCannonByType(sti(chr.Ship.Cannons.Type));
int sidx = sti(chr.curshipnum); // change to array 05-06-27
string tstr = "rel"+rel;
float power = 0.0;
if(num <= 0 || !CheckAttribute(NearShips[sidx],tstr+".0")) {
if(rel != RELATION_FRIEND) { // TY This check not being here might have been responsible for the self not being counted at all if no friends were around
Trace("terminating because nothing to count");
return power; //0.0; TY commenting out the 0.0, the thing is already set to that.
}
}
string tstr2;
for(int i = 0; i < sti(NearShips[sidx].(tstr).qty); i++)
{
tstr2 = i;
chr = GetCharacter(sti(NearShips[sidx].(tstr).(tstr2).idx));
if(GetCannonCurQuantity(&chr)<=0) continue;
string s1 = GetCurrentShipHP(&chr); //TY Not sure why these are needed, but leaving in place in case
string s2 = GetCannonCurQuantity(&chr);
string s3 = GetCannonPriceForPower(&chr); // TY the reason for adding this is beyond my limited understanding, but since the original function had these strings, I'm making one for the new stuff as well
string s4 = stf(NearShips[sidx].(tstr).(tstr2).dist);
//string s3 = 1.0 + pow2(stf(NearShips[sidx].(tstr).(tstr2).dist)/100.0, 1.5); //TY If I could make it properly get distance, I would probably have a hard check on range, if over a certain number comes back 0 (probably a bit beyond combat range), otherwase a straight calculation of power. That would make things properly consistent with the overall tactical situation, rather than constatntly shifting perhaps dramatically from a couple of ships getting closer or farther
//TY Let's try implementing the above plan on distance and range
//TY Begin hard distance check
if(stf(NearShips[sidx].(tstr).(tstr2).dist) > GetVisibilityRange(1)) { //TY long range is maximum consideration
Trace("Too far, not counting this ship");
continue;}
//if (Ship_GetDistance2D(PChar, &chr) < GetVisibilityRange(1)) //TY backup way, but not ideal, trying something else first
//TY End hard distance check
if(chr.ship.type == SHIP_FORT_NAME)
{
power += ((-10000 * GetCannonCurQuantity(&chr) * GetCannonPriceForPower(&chr))/1000000); //TY Forts are really odd, can't get current hp, return negative numbers, but oh well, this works.
trace("FORT had the following price of cannons" + GetCannonPriceForPower(&chr) + "and was considered 10000 hp for powerratio purposes" + "and cannon qty" + GetCannonCurQuantity(&chr) + "and contributed the following power" + ((-10000 * GetCannonCurQuantity(&chr) * GetCannonPriceForPower(&chr))/1000000));
}
else
{
power += ((GetCurrentShipHP(&chr) * GetCannonCurQuantity(&chr) * GetCannonPriceForPower(&chr))/1000000); //TY slight change--to plan mentioned in other comments--let's use cannon price as a proxy for power
trace("SHIP had the following price of cannons" + GetCannonPriceForPower(&chr) + "and HP" + GetCurrentShipHP(&chr) + "and cannon qty" + GetCannonCurQuantity(&chr) + "and contributed the following power" + ((GetCurrentShipHP(&chr) * GetCannonCurQuantity(&chr) * GetCannonPriceForPower(&chr))/1000000));
}
//TY Explanations of formula. Let's do this differently. Squareroots don't belong here (firepower is actually better more concentrated, that was having the opposite effect), And we need caliber consideration, using weight as a proxy. Distance shouldn't be so overwhelming a factor either. Probably best not to include sails, we don't want ships running when their sails are weak really.
//if(!CheckAttribute(&NearShips[sidx],tstr+"."+tstr2+".dist")){ //TY this was always coming back and canceling the check, distance wasn't being assigned. Not sure how to make it properly get distance
//Trace("power function broke at Checkattribute");
//continue;}
//power += sqrt(GetCurrentShipHP(&chr) * GetCannonCurQuantity(&chr)) / (1.0 + pow2(stf(NearShips[sidx].(tstr).(tstr2).dist)/100.0, 1.5)); //TY this wasn't working for above reasons
}
if(rel == RELATION_FRIEND) //TY This is where the ship calculates itself
{
chr = GetCharacter(idx);
tstr2 = 0;
if(GetCannonCurQuantity(&chr)<=0) return power; //TY no reason to do the rest if no cannons
//power += sqrt(GetCurrentShipHP(&chr) * GetCannonCurQuantity(&chr)) / (1.0 + pow2(stf(NearShips[sidx].all.(tstr2).dist)/100.0, 1.5)); // nearest ship
float selfpower = ((GetCurrentShipHP(&chr) * GetCannonCurQuantity(&chr) * GetCannonPriceForPower(&chr))/1000000);
trace("self calc Character had the following price of cannons" + GetCannonPriceForPower(&chr)); //TY Same comments as above for the formulas
power += selfpower;
Trace("power of self is " + selfpower + "so new total is" + power);
}
return power;
}
//TY Adding a function to make the cannon calculations above easy
int GetCannonPriceForPower(ref rChar)
{
int nCannonType = GetCaracterShipCannonsType(rChar);
if(nCannonType==CANNON_TYPE_NONECANNON) return 0.0;
ref rCannon = GetCannonByType(nCannonType);
trace("Calculating cannon cost at" + sti(rCannon.Cost));
return sti(rCannon.Cost);
}