on peut changer les settings wtf
This commit is contained in:
@@ -14,6 +14,7 @@ Keybinds::Keybinds(int layoutNumber) :
|
||||
for (Action action : ACTION_LIST_IN_ORDER) {
|
||||
this->keybinds.insert({action, std::set<sfKey>()});
|
||||
}
|
||||
this->modifiable = (layoutNumber == CUSTOMIZABLE_KEYBINDS);
|
||||
|
||||
this->loadKeybindsFromFile();
|
||||
}
|
||||
@@ -44,6 +45,8 @@ void Keybinds::loadKeybindsFromFile() {
|
||||
}
|
||||
|
||||
void Keybinds::saveKeybindsToFile() const {
|
||||
if (!this->modifiable) return;
|
||||
|
||||
std::ofstream layoutFile("data/config/keybinds/layout" + std::to_string(this->layoutNumber) + ".bin", std::ios::trunc | std::ios::binary);
|
||||
|
||||
char byte;
|
||||
@@ -62,13 +65,21 @@ void Keybinds::saveKeybindsToFile() const {
|
||||
}
|
||||
|
||||
void Keybinds::addKey(Action action, sfKey key) {
|
||||
if (!this->modifiable) return;
|
||||
|
||||
this->keybinds.at(action).insert(key);
|
||||
}
|
||||
|
||||
void Keybinds::clearKeys(Action action) {
|
||||
if (!this->modifiable) return;
|
||||
|
||||
this->keybinds.at(action).clear();
|
||||
}
|
||||
|
||||
bool Keybinds::isModifiable() const {
|
||||
return this->modifiable;
|
||||
}
|
||||
|
||||
const std::set<Action> Keybinds::getActions(sfKey key) const {
|
||||
std::set<Action> actions;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user