-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
blackrogue dungeoninfo fix #802
Conversation
Hi. First of all, thank you for helping RSBot. I can't merge your code because it breaks compatibility with other games. However, I can give you a few suggestions. Just add an optional for service in the regex string and you'll have solved the problem! Also, remove the You can use the code directly if you want. Don't forget to test it before committing. var service = 1;
var isNewer = line.StartsWith("0\t") || line.StartsWith("1\t");
// Optional service regex
var match = Regex.Match(line, @"^(?:(?<service>0|1)\t)?(?<id>\d+)\t(?<path>.+)$");
if (isNewer && !int.TryParse(match.Groups["service"].Value, out service))
throw new Exception($"Failed to load dungeon info: malformed service on {line}"); |
Hi! Could you take a closer look? I'm pretty confident it will not break anything. It previously worked with VSRO274, only had problems with BlackRogue100. After the fix it worked on both of them. I also tested the function with JSRO, ZSZC and VSRO188 I only found these 2 structures, ZSZC, BlackRogue, JSRO Checking if the line starts with 0 or 1 will incorrectly assume this is a newer file on the first dungeon
And this is VSRO188, VSRO274
What I do is I split the line and put them on a stack. So I could use it previously on VSRO274, but not on BlackRogue. After the fix it works for both of them, could log in and start the bot normally. Could you tell me if I missed anything and it still breaks some files? Thanks in advance! |
Yes, you are right. However, the order and understandability of the code is also very important for us, rather than the code working. As a solution, instead of checking the service, we can check the number of split tabs. Example code: var service = 1;
var match = Regex.Match(line, @"^(?:(?<service>0|1)\t)?(?<id>\d+)\t(?<path>.+)$");
if (!match.Success)
throw new Exception($"Failed to load dungeon info: invalid format on {line}");
bool hasServiceField = line.Split('\t').Length >= 3;
if (hasServiceField && !int.TryParse(match.Groups["service"].Value, out service))
throw new Exception($"Failed to load dungeon info: malformed service on {line}");
|
I modified it to use regex, no need to check the length, since the service match is optional, we can check if it matched or not, and not throw an exception. Tested, working. |
Merged. |
When using BlackRogue Cap 100 client the dungeoninfo only has id and dungeonpath, no service.
This causes an exception on loading, and the Player object will be null, and it will cause infinite null reference exceptions