]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Custom weapon priorities for bots: improve rating distribution by rating only weapons...
authorterencehill <piuntn@gmail.com>
Tue, 27 Dec 2016 16:28:12 +0000 (17:28 +0100)
committerterencehill <piuntn@gmail.com>
Tue, 27 Dec 2016 17:43:28 +0000 (18:43 +0100)
qcsrc/common/t_items.qc

index 6ee8869e45ce33b4c4ec555fd3a45970d7a4f380..4f6cf459ebc203d20ded5c825e3760b6152d254f 100644 (file)
@@ -945,25 +945,44 @@ float weapon_pickupevalfunc(entity player, entity item)
        // If custom weapon priorities for bots is enabled rate most wanted weapons higher
        if( bot_custom_weapon && c )
        {
-               // Find the highest position on any range
-               int position = -1;
-               int wep_count = 0;
-               int wpn = item.weapon;
-               for (int j = 0; j < WEP_LAST ; ++j){
-                       if (position == -1)
-                       if (bot_weapons_far[j] == wpn || bot_weapons_mid[j] == wpn || bot_weapons_close[j] == wpn)
-                               position = wep_count;
-                       if (bot_weapons_far[j] > 0 || bot_weapons_mid[j] > 0 || bot_weapons_close[j] > 0)
-                               wep_count++;
-               }
+               int best_ratio = 0;
+               int missing = 0;
 
-               // Rate it
-               if (position >= 0 )
+               // evaluate weapon usefulness in all ranges
+               for(int list = 0; list < 3; list++)
                {
-                       position = wep_count - position;
-                       // item.bot_pickupbasevalue is overwritten here
-                       return (BOT_PICKUP_RATING_LOW + ( (BOT_PICKUP_RATING_HIGH - BOT_PICKUP_RATING_LOW) * (position / wep_count) )) * c;
+                       int position = -1;
+                       int wep_count = 0;
+                       int wpn = item.weapon;
+                       for (int j = 0; j < WEP_LAST; ++j)
+                       {
+                               int list_wpn = 0;
+                               if (list == 0) list_wpn = bot_weapons_far[j];
+                               else if (list == 1) list_wpn = bot_weapons_mid[j];
+                               else list_wpn = bot_weapons_close[j];
+
+                               if (weaponsInMap & Weapons_from(list_wpn).m_wepset) // only if available
+                               {
+                                       if (list_wpn > 0)
+                                               wep_count++;
+                                       if (position == -1 && list_wpn == wpn)
+                                               position = wep_count;
+                               }
+                       }
+                       if (position == -1)
+                       {
+                               missing++;
+                               position = wep_count; // if missing assume last
+                       }
+                       if (wep_count)
+                       {
+                               if (!best_ratio || position / wep_count < best_ratio)
+                                       best_ratio = position / wep_count;
+                       }
                }
+
+               if (missing < 3 && best_ratio)
+                       return (BOT_PICKUP_RATING_HIGH - ( (BOT_PICKUP_RATING_HIGH - BOT_PICKUP_RATING_LOW) * best_ratio )) * c;
        }
 
        return item.bot_pickupbasevalue * c;