32 lines
954 B
C++
32 lines
954 B
C++
#include "int_command.hpp"
|
|
|
|
namespace big
|
|
{
|
|
int_command::int_command(const std::string& name, const std::string& label, const std::string& description, int& value, int lower_bound, int upper_bound) :
|
|
command(name, label, description, 1),
|
|
m_value(value),
|
|
m_lower_bound(lower_bound),
|
|
m_upper_bound(upper_bound)
|
|
{
|
|
}
|
|
|
|
void int_command::execute(const command_arguments& args, const std::shared_ptr<command_context> ctx)
|
|
{
|
|
m_value = args.get<int>(0);
|
|
}
|
|
|
|
std::optional<command_arguments> int_command::parse_args(const std::vector<std::string>& args, const std::shared_ptr<command_context> ctx)
|
|
{
|
|
command_arguments result(1);
|
|
int value = std::atoi(args[0].c_str());
|
|
|
|
if (value < m_lower_bound || value > m_upper_bound)
|
|
{
|
|
ctx->report_error(std::format("Value {} is not between {} and {} in command {}", value, m_lower_bound, m_upper_bound, m_name));
|
|
return std::nullopt;
|
|
}
|
|
|
|
result.push(value);
|
|
return result;
|
|
}
|
|
} |