2017-10-13 03:05:26 +04:00
|
|
|
|
// i2_bot – Instinct PokememBro Bot
|
|
|
|
|
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
|
|
|
|
|
2017-11-21 06:06:32 +04:00
|
|
|
|
package pokedexer
|
2017-10-13 03:05:26 +04:00
|
|
|
|
|
|
|
|
|
import (
|
2018-02-13 22:05:32 +04:00
|
|
|
|
"source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping"
|
2018-02-07 14:05:08 +04:00
|
|
|
|
"sort"
|
2018-02-07 14:37:50 +04:00
|
|
|
|
"strconv"
|
2018-02-07 15:59:28 +04:00
|
|
|
|
"strings"
|
2017-10-13 03:05:26 +04:00
|
|
|
|
)
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
func (p *Pokedexer) getAdvicePokememes(playerID int, adviceType string) ([]*dbmapping.PokememeFull, bool) {
|
|
|
|
|
c.Log.Debug("Getting advice for pokememes...")
|
2018-02-07 14:05:08 +04:00
|
|
|
|
pokememesArray := make([]*dbmapping.PokememeFull, 0)
|
2018-01-29 23:50:25 +04:00
|
|
|
|
|
|
|
|
|
playerRaw, err := c.DataCache.GetPlayerByID(playerID)
|
2017-10-18 07:03:34 +04:00
|
|
|
|
if err != nil {
|
2018-01-29 23:50:25 +04:00
|
|
|
|
c.Log.Error(err.Error())
|
2017-10-18 09:39:50 +04:00
|
|
|
|
return pokememesArray, false
|
2017-10-18 07:03:34 +04:00
|
|
|
|
}
|
2018-01-29 23:50:25 +04:00
|
|
|
|
profileRaw, err := c.DataCache.GetProfileByPlayerID(playerRaw.ID)
|
2017-10-18 07:03:34 +04:00
|
|
|
|
if err != nil {
|
2018-01-29 23:50:25 +04:00
|
|
|
|
c.Log.Error(err.Error())
|
2017-10-18 09:39:50 +04:00
|
|
|
|
return pokememesArray, false
|
2017-10-18 07:03:34 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-18 09:39:50 +04:00
|
|
|
|
if playerRaw.LeagueID == 0 {
|
|
|
|
|
return pokememesArray, false
|
2017-10-18 07:03:34 +04:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
weapon, err := c.DataCache.GetWeaponTypeByID(profileRaw.WeaponID)
|
2018-02-07 15:00:04 +04:00
|
|
|
|
if err != nil {
|
2018-02-07 15:59:28 +04:00
|
|
|
|
c.Log.Debug(err.Error())
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
summPower := profileRaw.Power
|
|
|
|
|
if weapon != nil {
|
|
|
|
|
summPower = summPower + weapon.Power
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allPokememes := c.DataCache.GetAllPokememes()
|
|
|
|
|
|
|
|
|
|
for i := range allPokememes {
|
2018-02-07 15:59:28 +04:00
|
|
|
|
neededGrade := 0
|
|
|
|
|
if profileRaw.LevelID < 9 {
|
|
|
|
|
neededGrade = profileRaw.LevelID + 1
|
|
|
|
|
} else {
|
|
|
|
|
neededGrade = 9
|
|
|
|
|
}
|
|
|
|
|
if allPokememes[i].Pokememe.Grade == neededGrade {
|
|
|
|
|
matchLeague := false
|
|
|
|
|
if profileRaw.LevelID < 4 {
|
|
|
|
|
matchLeague = true
|
|
|
|
|
} else if adviceType == "best_nofilter" || adviceType == "advice_all" {
|
|
|
|
|
matchLeague = true
|
2018-02-07 15:00:04 +04:00
|
|
|
|
} else {
|
2018-02-07 15:59:28 +04:00
|
|
|
|
for j := range allPokememes[i].Elements {
|
|
|
|
|
if allPokememes[i].Elements[j].LeagueID == playerRaw.LeagueID {
|
|
|
|
|
matchLeague = true
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
2018-02-07 15:59:28 +04:00
|
|
|
|
if matchLeague {
|
|
|
|
|
switch adviceType {
|
|
|
|
|
case "best", "advice":
|
|
|
|
|
if (allPokememes[i].Pokememe.Defence < summPower) || allPokememes[i].Pokememe.Purchaseable {
|
|
|
|
|
pokememesArray = append(pokememesArray, allPokememes[i])
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
pokememesArray = append(pokememesArray, allPokememes[i])
|
|
|
|
|
}
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
c.Log.Debug(strconv.Itoa(len(pokememesArray)) + " pokememes passed initial /best filtration.")
|
2018-02-07 15:00:04 +04:00
|
|
|
|
|
|
|
|
|
// As we have already filtered this array, we need to sort it and pass to view
|
|
|
|
|
sort.Slice(pokememesArray, func(i, j int) bool {
|
2018-02-07 15:59:28 +04:00
|
|
|
|
if strings.HasPrefix(adviceType, "best") {
|
|
|
|
|
return pokememesArray[i].Pokememe.Attack > pokememesArray[j].Pokememe.Attack
|
|
|
|
|
}
|
2018-02-07 15:00:04 +04:00
|
|
|
|
return pokememesArray[i].Pokememe.Price > pokememesArray[j].Pokememe.Price
|
|
|
|
|
})
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
switch adviceType {
|
|
|
|
|
case "best", "advice", "best_nofilter":
|
|
|
|
|
if len(pokememesArray) > 5 {
|
|
|
|
|
idx := 0
|
|
|
|
|
pokememesArrayShorted := make([]*dbmapping.PokememeFull, 0)
|
|
|
|
|
for i := range pokememesArray {
|
|
|
|
|
if idx < 5 {
|
|
|
|
|
pokememesArrayShorted = append(pokememesArrayShorted, pokememesArray[i])
|
|
|
|
|
}
|
|
|
|
|
idx++
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-07 15:59:28 +04:00
|
|
|
|
pokememesArray = pokememesArrayShorted
|
|
|
|
|
}
|
2018-02-07 15:00:04 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pokememesArray, true
|
|
|
|
|
}
|