2021-08-29 14:18:45 +02:00
|
|
|
#include <hex/api/content_registry.hpp>
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/api/localization.hpp>
|
2021-09-08 15:18:24 +02:00
|
|
|
|
2021-08-29 22:15:18 +02:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
|
2022-09-07 23:11:24 +02:00
|
|
|
#include <content/helpers/math_evaluator.hpp>
|
2021-01-22 18:01:39 +01:00
|
|
|
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
|
|
|
void registerCommandPaletteCommands() {
|
|
|
|
|
2021-08-29 14:18:45 +02:00
|
|
|
ContentRegistry::CommandPaletteCommands::add(
|
2022-01-24 20:53:17 +01:00
|
|
|
ContentRegistry::CommandPaletteCommands::Type::SymbolCommand,
|
|
|
|
"#",
|
|
|
|
"hex.builtin.command.calc.desc",
|
|
|
|
[](auto input) {
|
2022-05-27 20:42:07 +02:00
|
|
|
hex::MathEvaluator<long double> evaluator;
|
2022-01-24 20:53:17 +01:00
|
|
|
evaluator.registerStandardVariables();
|
|
|
|
evaluator.registerStandardFunctions();
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
std::optional<long double> result;
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2022-05-27 20:42:07 +02:00
|
|
|
result = evaluator.evaluate(input);
|
2022-01-24 20:53:17 +01:00
|
|
|
if (result.has_value())
|
|
|
|
return hex::format("#{0} = {1}", input.data(), result.value());
|
2022-05-27 20:42:07 +02:00
|
|
|
else if (evaluator.hasError())
|
|
|
|
return hex::format("Error: {}", *evaluator.getLastError());
|
2022-01-24 20:53:17 +01:00
|
|
|
else
|
|
|
|
return std::string("???");
|
|
|
|
});
|
2021-01-22 18:01:39 +01:00
|
|
|
|
2021-08-29 14:18:45 +02:00
|
|
|
ContentRegistry::CommandPaletteCommands::add(
|
2022-01-24 20:53:17 +01:00
|
|
|
ContentRegistry::CommandPaletteCommands::Type::KeywordCommand,
|
|
|
|
"/web",
|
|
|
|
"hex.builtin.command.web.desc",
|
|
|
|
[](auto input) {
|
|
|
|
return hex::format("hex.builtin.command.web.result"_lang, input.data());
|
|
|
|
},
|
|
|
|
[](auto input) {
|
|
|
|
hex::openWebpage(input);
|
|
|
|
});
|
2021-02-08 19:56:04 +01:00
|
|
|
|
2021-08-29 14:18:45 +02:00
|
|
|
ContentRegistry::CommandPaletteCommands::add(
|
2022-01-24 20:53:17 +01:00
|
|
|
ContentRegistry::CommandPaletteCommands::Type::SymbolCommand,
|
|
|
|
"$",
|
|
|
|
"hex.builtin.command.cmd.desc",
|
|
|
|
[](auto input) {
|
|
|
|
return hex::format("hex.builtin.command.cmd.result"_lang, input.data());
|
|
|
|
},
|
|
|
|
[](auto input) {
|
|
|
|
hex::runCommand(input);
|
|
|
|
});
|
2021-01-22 18:01:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|