2024-03-22 15:59:42 +03:00
|
|
|
mod game;
|
2024-03-25 05:20:18 +03:00
|
|
|
mod labled_switch;
|
2024-03-22 15:59:42 +03:00
|
|
|
|
2024-03-26 14:11:46 +03:00
|
|
|
use crate::game::*;
|
2024-03-25 05:20:18 +03:00
|
|
|
use gio::Settings;
|
|
|
|
use gtk::{gio, prelude::*, Button, Entry, Label};
|
2024-03-26 14:11:46 +03:00
|
|
|
use gtk::{glib, glib::clone, Application, ApplicationWindow, Box};
|
2024-03-25 05:20:18 +03:00
|
|
|
use rand::prelude::*;
|
2024-03-26 14:11:46 +03:00
|
|
|
use std::cell::{Cell, RefCell};
|
|
|
|
use std::ops::Deref;
|
2024-03-22 15:59:42 +03:00
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
const APP_ID: &str = "org.foxarmy.learn-hieroglyph";
|
2024-03-22 15:59:42 +03:00
|
|
|
|
|
|
|
fn main() -> glib::ExitCode {
|
|
|
|
let app = Application::builder().application_id(APP_ID).build();
|
|
|
|
|
|
|
|
app.connect_activate(build_ui);
|
|
|
|
|
|
|
|
app.run()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_menu(w: &RefCell<ApplicationWindow>) -> Box {
|
|
|
|
let menu: Box = Box::builder()
|
|
|
|
.orientation(gtk::Orientation::Vertical)
|
|
|
|
.halign(gtk::Align::Center)
|
|
|
|
.build();
|
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
let settings_container: Box = Box::builder()
|
|
|
|
.orientation(gtk::Orientation::Vertical)
|
|
|
|
.valign(gtk::Align::Start)
|
|
|
|
.halign(gtk::Align::Start)
|
2024-03-22 15:59:42 +03:00
|
|
|
.build();
|
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
let gamemode_settings_container: Box = Box::builder()
|
2024-03-22 15:59:42 +03:00
|
|
|
.orientation(gtk::Orientation::Vertical)
|
2024-03-25 05:20:18 +03:00
|
|
|
.valign(gtk::Align::Start)
|
|
|
|
.halign(gtk::Align::Start)
|
2024-03-22 15:59:42 +03:00
|
|
|
.build();
|
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
let hiragana_setting_container: Box = Box::builder()
|
2024-03-22 15:59:42 +03:00
|
|
|
.orientation(gtk::Orientation::Horizontal)
|
|
|
|
.valign(gtk::Align::Center)
|
|
|
|
.halign(gtk::Align::Center)
|
|
|
|
.build();
|
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
let katakana_setting_container: Box = Box::builder()
|
2024-03-22 15:59:42 +03:00
|
|
|
.orientation(gtk::Orientation::Horizontal)
|
|
|
|
.valign(gtk::Align::Center)
|
|
|
|
.halign(gtk::Align::Center)
|
|
|
|
.build();
|
2024-03-26 14:11:46 +03:00
|
|
|
|
|
|
|
let start_button: Button = Button::builder().label("Start!").build();
|
2024-03-22 15:59:42 +03:00
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
let mut settings = Cell::new(Settings::new(APP_ID));
|
2024-03-26 14:11:46 +03:00
|
|
|
|
2024-03-25 05:20:18 +03:00
|
|
|
start_button.connect_clicked(clone!( @strong w => move |_| {
|
|
|
|
w.borrow_mut().set_child(Some(&build_game(&w)))
|
2024-03-22 15:59:42 +03:00
|
|
|
}));
|
2024-03-25 05:20:18 +03:00
|
|
|
//////////////////kana to romaji setting////////////////////////////
|
|
|
|
let ktr_switch = labled_switch::build("enable あ->a");
|
|
|
|
gamemode_settings_container.append(&ktr_switch.0);
|
|
|
|
|
|
|
|
////////////////romaji to kana setting///////////////////////////////
|
|
|
|
let rtk_switch = labled_switch::build("enable a->あ");
|
|
|
|
gamemode_settings_container.append(&rtk_switch.0);
|
|
|
|
////////////////hiragana enable setting/////////////////////////////
|
|
|
|
let hiragana_switch = labled_switch::build("enable hiragana");
|
|
|
|
hiragana_setting_container.append(&hiragana_switch.0);
|
|
|
|
////////////////katakana enable setting/////////////////////////////
|
|
|
|
let katakana_switch = labled_switch::build("enable katakana");
|
|
|
|
katakana_setting_container.append(&katakana_switch.0);
|
|
|
|
|
|
|
|
let s = settings.get_mut();
|
|
|
|
s.bind("is-ktr-enabled", &ktr_switch.1, "active").build();
|
|
|
|
s.bind("is-rtk-enabled", &rtk_switch.1, "active").build();
|
2024-03-26 14:11:46 +03:00
|
|
|
s.bind("is-hiragana-enabled", &hiragana_switch.1, "active")
|
|
|
|
.build();
|
|
|
|
s.bind("is-katakana-enabled", &katakana_switch.1, "active")
|
|
|
|
.build();
|
2024-03-25 05:20:18 +03:00
|
|
|
|
|
|
|
settings_container.append(&gamemode_settings_container);
|
|
|
|
settings_container.append(&hiragana_setting_container);
|
|
|
|
settings_container.append(&katakana_setting_container);
|
|
|
|
|
2024-03-26 14:11:46 +03:00
|
|
|
menu.append(&settings_container);
|
2024-03-25 05:20:18 +03:00
|
|
|
|
|
|
|
menu.append(&start_button);
|
2024-03-22 15:59:42 +03:00
|
|
|
|
|
|
|
menu
|
|
|
|
}
|
|
|
|
|
2024-03-26 14:11:46 +03:00
|
|
|
fn random_kana(hiragana: bool, katakana: bool) -> Hieroglyph {
|
|
|
|
if hiragana && katakana {
|
|
|
|
generate_random_hieroglyph(if rand::thread_rng().gen_bool(0.5) {
|
|
|
|
Kanas::Katakana
|
|
|
|
} else {
|
|
|
|
Kanas::Hiragana
|
|
|
|
})
|
2024-03-25 05:20:18 +03:00
|
|
|
} else {
|
2024-03-26 14:11:46 +03:00
|
|
|
generate_random_hieroglyph(if hiragana {
|
|
|
|
Kanas::Hiragana
|
|
|
|
} else {
|
|
|
|
Kanas::Katakana
|
|
|
|
})
|
2024-03-25 05:20:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ask(ktr: bool, rtk: bool, hiragana: bool, katakana: bool) -> Hieroglyph {
|
|
|
|
if ktr && rtk {
|
2024-03-26 14:11:46 +03:00
|
|
|
return if rand::thread_rng().gen_bool(0.5) {
|
|
|
|
random_kana(hiragana, katakana)
|
|
|
|
} else {
|
|
|
|
generate_random_hieroglyph(Kanas::Romaji)
|
|
|
|
};
|
2024-03-25 05:20:18 +03:00
|
|
|
} else if ktr {
|
|
|
|
return random_kana(hiragana, katakana);
|
|
|
|
} else {
|
|
|
|
return generate_random_hieroglyph(Kanas::Romaji);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-26 14:11:46 +03:00
|
|
|
fn generate_question_text(question: &Hieroglyph, exact_kana: &Kanas) -> String {
|
2024-03-25 05:20:18 +03:00
|
|
|
return String::from(match question.get_kana() {
|
2024-03-26 14:11:46 +03:00
|
|
|
Kanas::Romaji => match exact_kana {
|
|
|
|
Kanas::Hiragana => {
|
|
|
|
format!("Name corresponding hiragana for {}", question.to_string())
|
|
|
|
}
|
|
|
|
Kanas::Katakana => {
|
|
|
|
format!("Name corresponding katakana for {}", question.to_string())
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
panic!("HOW DID YOU GET HERE!?");
|
2024-03-25 05:20:18 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
Kanas::Hiragana => {
|
2024-03-26 14:11:46 +03:00
|
|
|
format!(
|
|
|
|
"Name corresponding romaji for hiragana {}",
|
|
|
|
question.to_string()
|
|
|
|
)
|
|
|
|
}
|
2024-03-25 05:20:18 +03:00
|
|
|
Kanas::Katakana => {
|
2024-03-26 14:11:46 +03:00
|
|
|
format!(
|
|
|
|
"Name corresponding romaji for katakana {}",
|
|
|
|
question.to_string()
|
|
|
|
)
|
2024-03-25 05:20:18 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-26 13:37:19 +03:00
|
|
|
fn build_game(_w: &RefCell<ApplicationWindow>) -> Box {
|
2024-03-22 15:59:42 +03:00
|
|
|
let game: Box = Box::builder()
|
2024-03-26 14:11:46 +03:00
|
|
|
.orientation(gtk::Orientation::Vertical)
|
2024-03-22 15:59:42 +03:00
|
|
|
.build();
|
2024-03-26 14:11:46 +03:00
|
|
|
let mut question_label: RefCell<Label> =
|
|
|
|
RefCell::new(Label::builder().label("placeholder").build());
|
|
|
|
let entry: Entry = Entry::builder().placeholder_text("Answer").build();
|
|
|
|
let mut counter_label: RefCell<Label> =
|
|
|
|
RefCell::new(Label::builder().label("Correct|incorrect: 0|0").build());
|
2024-03-26 13:37:19 +03:00
|
|
|
let stats: RefCell<(u32, u32)> = RefCell::new((0, 0));
|
2024-03-25 05:20:18 +03:00
|
|
|
let settings: Settings = Settings::new(APP_ID);
|
|
|
|
|
|
|
|
let ktr: bool = settings.boolean("is-ktr-enabled");
|
|
|
|
let rtk: bool = settings.boolean("is-rtk-enabled");
|
|
|
|
let hiragana: bool = settings.boolean("is-hiragana-enabled");
|
|
|
|
let katakana: bool = settings.boolean("is-katakana-enabled");
|
|
|
|
|
2024-03-26 13:37:19 +03:00
|
|
|
let question: RefCell<Hieroglyph> = RefCell::new(ask(ktr, rtk, hiragana, katakana));
|
2024-03-26 14:11:46 +03:00
|
|
|
let exact_kana: RefCell<Kanas> = RefCell::new(if hiragana && katakana {
|
|
|
|
if rand::thread_rng().gen_bool(0.5) {
|
|
|
|
Kanas::Hiragana
|
|
|
|
} else {
|
|
|
|
Kanas::Katakana
|
|
|
|
}
|
|
|
|
} else if hiragana {
|
|
|
|
Kanas::Hiragana
|
|
|
|
} else {
|
|
|
|
Kanas::Katakana
|
|
|
|
});
|
|
|
|
|
2024-03-26 13:37:19 +03:00
|
|
|
let correct_answer: RefCell<Hieroglyph> = RefCell::new(get_kana_pair_for_hieroglyph(
|
|
|
|
match question.borrow().get_kana() {
|
|
|
|
Kanas::Romaji => match exact_kana.borrow().deref() {
|
|
|
|
Kanas::Hiragana => &Kanas::Hiragana,
|
|
|
|
Kanas::Katakana => &Kanas::Katakana,
|
2024-03-26 14:11:46 +03:00
|
|
|
_ => panic!("HOW DID YOU GET HERE?!"),
|
2024-03-26 13:37:19 +03:00
|
|
|
},
|
2024-03-26 14:11:46 +03:00
|
|
|
_ => &Kanas::Romaji,
|
|
|
|
},
|
|
|
|
&question.borrow(),
|
2024-03-26 13:37:19 +03:00
|
|
|
));
|
|
|
|
|
|
|
|
let binding = generate_question_text(&question.borrow(), exact_kana.borrow().deref());
|
2024-03-25 05:20:18 +03:00
|
|
|
let text: &str = &(binding.as_str());
|
2024-03-26 13:37:19 +03:00
|
|
|
question_label.borrow_mut().set_label(text);
|
|
|
|
|
|
|
|
let iteration = clone!( @strong question_label, @strong counter_label, @strong stats, @strong exact_kana => move |entry: &Entry| {
|
|
|
|
let answer: &String = &entry.text().to_string();
|
|
|
|
println!("{} <-> {}? = {}", answer, correct_answer.borrow().to_string(), *answer == correct_answer.borrow().to_string());
|
|
|
|
*stats.borrow_mut() = if *answer == correct_answer.borrow().to_string() { (stats.borrow().0 + 1, stats.borrow().1) } else {(stats.borrow().0, stats.borrow().1 + 1)};
|
|
|
|
counter_label.borrow_mut().set_label(format!("Correct|Incorrect: {}|{}", stats.borrow().0, stats.borrow().1).as_str());
|
|
|
|
*question.borrow_mut() = ask(ktr, rtk, hiragana, katakana);
|
2024-03-26 14:11:46 +03:00
|
|
|
*exact_kana.borrow_mut() =
|
|
|
|
if hiragana && katakana {
|
|
|
|
if rand::thread_rng().gen_bool(0.5) {Kanas::Hiragana} else {Kanas::Katakana}
|
|
|
|
} else if hiragana {
|
|
|
|
Kanas::Hiragana
|
|
|
|
} else {
|
|
|
|
Kanas::Katakana
|
|
|
|
};
|
2024-03-26 13:37:19 +03:00
|
|
|
*correct_answer.borrow_mut() = get_kana_pair_for_hieroglyph(
|
|
|
|
match question.borrow().get_kana() {
|
|
|
|
Kanas::Romaji => match exact_kana.borrow().deref() {
|
|
|
|
Kanas::Hiragana => &Kanas::Hiragana,
|
|
|
|
Kanas::Katakana => &Kanas::Katakana,
|
|
|
|
_ => panic!("HOW DID YOU GET HERE?!")
|
|
|
|
},
|
|
|
|
_ => &Kanas::Romaji
|
2024-03-26 14:11:46 +03:00
|
|
|
},
|
2024-03-26 13:37:19 +03:00
|
|
|
&question.borrow()
|
|
|
|
);
|
|
|
|
let binding = generate_question_text(&question.borrow(), exact_kana.borrow().deref());
|
2024-03-25 05:20:18 +03:00
|
|
|
let text: &str = &(binding.as_str());
|
|
|
|
question_label.borrow_mut().set_label(text);
|
2024-03-26 13:37:19 +03:00
|
|
|
entry.set_text("");
|
|
|
|
});
|
2024-03-25 05:20:18 +03:00
|
|
|
|
2024-03-26 13:37:19 +03:00
|
|
|
entry.connect_activate(iteration);
|
2024-03-25 05:20:18 +03:00
|
|
|
|
|
|
|
game.append(question_label.get_mut());
|
2024-03-22 15:59:42 +03:00
|
|
|
game.append(&entry);
|
2024-03-26 13:37:19 +03:00
|
|
|
game.append(counter_label.get_mut());
|
2024-03-22 15:59:42 +03:00
|
|
|
|
|
|
|
game
|
|
|
|
}
|
|
|
|
|
|
|
|
fn build_ui(app: &Application) {
|
2024-03-26 14:11:46 +03:00
|
|
|
let mut window: RefCell<ApplicationWindow> = RefCell::new(
|
|
|
|
ApplicationWindow::builder()
|
|
|
|
.application(app)
|
|
|
|
.title("Test")
|
|
|
|
.default_height(920)
|
|
|
|
.default_width(480)
|
|
|
|
.build(),
|
|
|
|
);
|
2024-03-22 15:59:42 +03:00
|
|
|
|
|
|
|
let menu = build_menu(&window);
|
|
|
|
|
|
|
|
window.get_mut().set_child(Some(&menu));
|
|
|
|
|
|
|
|
window.get_mut().present();
|
2024-03-08 13:51:55 +03:00
|
|
|
}
|