Skip to content

Commit a1902a8

Browse files
feat(SoloCraft): exclude map/instance from Solocraft scaling with conf (#50)
* Exclude map/instance from Solocraft scaling with conf * include cstdint
1 parent 2b8193e commit a1902a8

File tree

5 files changed

+79
-6
lines changed

5 files changed

+79
-6
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,8 @@ local.properties
4646
.loadpath
4747
.project
4848
.cproject
49+
50+
#
51+
# Visual Studio Code
52+
#
53+
.vscode/

conf/Solocraft.conf.dist

+12
Original file line numberDiff line numberDiff line change
@@ -439,3 +439,15 @@ Solocraft.QuarryOfTears.Level = 78
439439
Solocraft.HallsOfReflection.Level = 78
440440
# The Ruby Sanctum
441441
Solocraft.ChamberOfAspectsRed.Level = 80
442+
443+
###################################################################################################
444+
# Misc
445+
###################################################################################################
446+
447+
# Map excluded
448+
# This settings excludes some maps from the Solocraft instance scaling
449+
450+
# Example:
451+
# Solocraft.Instance.Excluded = "30,489,529,559,562,566,572,607,617,618,628"
452+
# This example excludes scaling in PvP BG & Arena maps
453+
Solocraft.Instance.Excluded = ""

src/Solocraft.cpp

+25-6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
#include <math.h>
1313
#include <unordered_map>
1414
#include "ObjectGuid.h"
15+
#include "utils/Utils.h"
16+
#include <iostream>
17+
#include <vector>
18+
#include <string>
19+
#include <cstdint>
1520

1621
bool SoloCraftEnable = 1;
1722
bool SoloCraftAnnounceModule = 1;
@@ -28,6 +33,7 @@ std::unordered_map<uint8, uint32> classes;
2833
std::unordered_map<uint32, uint32> dungeons;
2934
std::unordered_map<uint32, float> diff_Multiplier;
3035
std::unordered_map<uint32, float> diff_Multiplier_Heroics;
36+
std::vector<uint32_t> SolocraftInstanceExcluded;
3137

3238
float D5 = 1.0;
3339
float D10 = 1.0;
@@ -305,6 +311,9 @@ class SolocraftConfig : public WorldScript
305311
//Unique Raids beyond the heroic and normal versions of themselves
306312
D649H10 = sConfigMgr->GetOption<float>("Solocraft.ArgentTournamentRaidH10", 10.0); //Trial of the Crusader 10 Heroic
307313
D649H25 = sConfigMgr->GetOption<float>("Solocraft.ArgentTournamentRaidH25", 25.0); //Trial of the Crusader 25 Heroic
314+
315+
//Get from conf excluded map for Solocraft scaling
316+
LoadList(sConfigMgr->GetOption<std::string>("Solocraft.Instance.Excluded", ""), SolocraftInstanceExcluded);
308317
}
309318
};
310319

@@ -361,6 +370,11 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
361370
{
362371
public:
363372
SolocraftPlayerInstanceHandler() : PlayerScript("SolocraftPlayerInstanceHandler") {}
373+
374+
bool IsInSolocraftInstanceExcludedList(uint32 id)
375+
{
376+
return find(SolocraftInstanceExcluded.begin(), SolocraftInstanceExcluded.end(), id) != SolocraftInstanceExcluded.end();
377+
}
364378

365379
void OnMapChanged(Player* player) override
366380
{
@@ -380,6 +394,11 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
380394
{
381395
if (map)
382396
{
397+
if (IsInSolocraftInstanceExcludedList(map->GetId()))
398+
{
399+
return 0;
400+
}
401+
383402
if (map->Is25ManRaid())
384403
{
385404
if (map->IsHeroic() && map->GetId() == 649)
@@ -536,8 +555,12 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
536555
// Apply the player buffs
537556
void ApplyBuffs(Player* player, Map* map, float difficulty, int dunLevel, int numInGroup, int classBalance)
538557
{
539-
// Check whether to buff the player or check to debuff back to normal
540-
if (difficulty != 0)
558+
// Check whether to debuff back to normal or check to buff the player
559+
if (difficulty == 0 || IsInSolocraftInstanceExcludedList(map->GetId()))
560+
{
561+
ClearBuffs(player); // Check to revert player back to normal - Moving this here fixed logout and login while in instance buff and debuff issues
562+
}
563+
else
541564
{
542565
std::ostringstream ss;
543566

@@ -709,10 +732,6 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
709732
ClearBuffs(player); // Check to revert player back to normal
710733
}
711734
}
712-
else
713-
{
714-
ClearBuffs(player); // Check to revert player back to normal - Moving this here fixed logout and login while in instance buff and debuff issues
715-
}
716735
}
717736

718737
private:

src/utils/Utils.cpp

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include "Utils.h"
2+
#include <iostream>
3+
#include <sstream>
4+
#include <string>
5+
#include <vector>
6+
7+
std::vector<std::string> split(const std::string& str, char delimiter) {
8+
std::vector<std::string> res;
9+
if (str.empty()) return res;
10+
std::string token;
11+
std::istringstream tokenStream(str);
12+
while (std::getline(tokenStream, token, delimiter)) {
13+
res.push_back(token);
14+
}
15+
return res;
16+
}

src/utils/Utils.h

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#ifndef UTILS_H
2+
#define UTILS_H
3+
4+
#include <cstdint>
5+
#include <iostream>
6+
#include <vector>
7+
#include <string>
8+
#include <sstream>
9+
10+
std::vector<std::string> split(const std::string& str, char delimiter);
11+
12+
template <class T>
13+
void LoadList(const std::string& value, T& list) {
14+
std::vector<std::string> ids = split(value, ',');
15+
for (const std::string& id_str : ids) {
16+
uint32_t id = static_cast<uint32_t>(std::atoi(id_str.c_str()));
17+
list.push_back(id);
18+
}
19+
}
20+
21+
#endif

0 commit comments

Comments
 (0)