mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
[Strings] Add more number formatters (#2873)
* [Strings] Add more number formatters # Notes - Adds `Strings::ToUnsignedInt` for `uint32` support. - Adds `Strings::ToBigInt` for `int64` support. - Adds `Strings::ToUnsignedBigInt` for `uint64` support. - Adds `Strings::ToFloat` for `float` support. - Replaces all `std::stoi` references with `Strings::ToInt`. - Replaces all `atoi` references with `Strings::ToInt`. - Replaces all `std::stoul` references with `Strings::ToUnsignedInt`. - Replaces all `atoul` references with `Strings::ToUnsignedInt`. - Replaces all `std::stoll` references with `Strings::ToBigInt`. - Replaces all `atoll` references with `Strings::ToBigInt`. - Replaces all `std::stoull` references with `Strings::ToUnsignedBigInt`. - Replaces all `atoull` references with `Strings::ToUnsignedBigInt`. - Replaces all `std::stof` references with `Strings::ToFloat`. * [Strings] Add more number formatters - Adds `Strings::ToUnsignedInt` for `uint32` support. - Adds `Strings::ToBigInt` for `int64` support. - Adds `Strings::ToUnsignedBigInt` for `uint64` support. - Adds `Strings::ToFloat` for `float` support. - Replaces all `std::stoi` references with `Strings::ToInt`. - Replaces all `atoi` references with `Strings::ToInt`. - Replaces all `std::stoul` references with `Strings::ToUnsignedInt`. - Replaces all `atoul` references with `Strings::ToUnsignedInt`. - Replaces all `std::stoll` references with `Strings::ToBigInt`. - Replaces all `atoll` references with `Strings::ToBigInt`. - Replaces all `std::stoull` references with `Strings::ToUnsignedBigInt`. - Replaces all `atoull` references with `Strings::ToUnsignedBigInt`. - Replaces all `std::stof` references with `Strings::ToFloat`. * Rebase cleanup * Changes/benchmarks/tests --------- Co-authored-by: Akkadius <akkadius1@gmail.com>
This commit is contained in:
@@ -8,7 +8,7 @@ void command_zone_instance(Client *c, const Seperator *sep)
|
||||
return;
|
||||
}
|
||||
|
||||
auto instance_id = std::stoul(sep->arg[1]);
|
||||
auto instance_id = Strings::ToUnsignedInt(sep->arg[1]);
|
||||
if (!instance_id) {
|
||||
c->Message(Chat::White, "You must enter a valid Instance ID.");
|
||||
return;
|
||||
@@ -52,9 +52,9 @@ void command_zone_instance(Client *c, const Seperator *sep)
|
||||
return;
|
||||
}
|
||||
|
||||
auto x = sep->IsNumber(2) ? std::stof(sep->arg[2]) : 0.0f;
|
||||
auto y = sep->IsNumber(3) ? std::stof(sep->arg[3]) : 0.0f;
|
||||
auto z = sep->IsNumber(4) ? std::stof(sep->arg[4]) : 0.0f;
|
||||
auto x = sep->IsNumber(2) ? Strings::ToFloat(sep->arg[2]) : 0.0f;
|
||||
auto y = sep->IsNumber(3) ? Strings::ToFloat(sep->arg[3]) : 0.0f;
|
||||
auto z = sep->IsNumber(4) ? Strings::ToFloat(sep->arg[4]) : 0.0f;
|
||||
auto zone_mode = sep->IsNumber(2) ? ZoneSolicited : ZoneToSafeCoords;
|
||||
|
||||
c->MovePC(
|
||||
|
||||
Reference in New Issue
Block a user