Compare commits
No commits in common. "70c745117f783b29dcc29f05722b263a1305fbc4" and "e3f8087a6b22102cb3e982e2d14f556994106a39" have entirely different histories.
70c745117f
...
e3f8087a6b
3 changed files with 35 additions and 47 deletions
|
@ -7,6 +7,7 @@ logic mostly like https://git.crispypin.cc/CrispyPin/marble
|
||||||
- undo/redo
|
- undo/redo
|
||||||
- more levels
|
- more levels
|
||||||
- make direct power (gate -> machine) work, (needs storing power direction in machine tiles)
|
- make direct power (gate -> machine) work, (needs storing power direction in machine tiles)
|
||||||
|
- story/lore
|
||||||
- cut selections, copy to system clipboard
|
- cut selections, copy to system clipboard
|
||||||
- timestamps in solutions and blueprints
|
- timestamps in solutions and blueprints
|
||||||
- multiple input/output sets
|
- multiple input/output sets
|
||||||
|
|
|
@ -56,7 +56,8 @@ pub struct Editor {
|
||||||
time_since_step: f32,
|
time_since_step: f32,
|
||||||
exit_state: ExitState,
|
exit_state: ExitState,
|
||||||
exit_menu: bool,
|
exit_menu: bool,
|
||||||
popup: EndPopup,
|
complete_popup: Popup,
|
||||||
|
// fail_popup: Popup,
|
||||||
score: Option<Score>,
|
score: Option<Score>,
|
||||||
blueprints: Vec<Blueprint>,
|
blueprints: Vec<Blueprint>,
|
||||||
selected_blueprint: usize,
|
selected_blueprint: usize,
|
||||||
|
@ -68,10 +69,9 @@ pub struct Editor {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq)]
|
#[derive(Debug, PartialEq)]
|
||||||
enum EndPopup {
|
enum Popup {
|
||||||
None,
|
Start,
|
||||||
Success,
|
Visible,
|
||||||
Failure,
|
|
||||||
Dismissed,
|
Dismissed,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,7 +135,8 @@ impl Editor {
|
||||||
level,
|
level,
|
||||||
exit_state: ExitState::Dont,
|
exit_state: ExitState::Dont,
|
||||||
exit_menu: false,
|
exit_menu: false,
|
||||||
popup: EndPopup::None,
|
complete_popup: Popup::Start,
|
||||||
|
// fail_popup: Popup::Start,
|
||||||
score: solution.score,
|
score: solution.score,
|
||||||
blueprints: get_blueprints(),
|
blueprints: get_blueprints(),
|
||||||
selected_blueprint: usize::MAX,
|
selected_blueprint: usize::MAX,
|
||||||
|
@ -189,25 +190,22 @@ impl Editor {
|
||||||
fn step(&mut self) {
|
fn step(&mut self) {
|
||||||
self.machine.step();
|
self.machine.step();
|
||||||
|
|
||||||
if self.popup != EndPopup::None {
|
if self.complete_popup == Popup::Visible {
|
||||||
self.popup = EndPopup::Dismissed;
|
self.complete_popup = Popup::Dismissed;
|
||||||
}
|
}
|
||||||
if !self.level.outputs().is_empty()
|
if !self.level.outputs().is_empty()
|
||||||
&& self.popup == EndPopup::None
|
&& self.level.outputs() == self.machine.output()
|
||||||
|
&& self.complete_popup == Popup::Start
|
||||||
{
|
{
|
||||||
if self.level.outputs() == self.machine.output() {
|
self.complete_popup = Popup::Visible;
|
||||||
self.popup = EndPopup::Success;
|
println!("completed in {:?}", self.start_time.elapsed());
|
||||||
println!("completed in {:?}", self.start_time.elapsed());
|
self.exit_state = ExitState::Save;
|
||||||
self.exit_state = ExitState::Save;
|
self.sim_state = SimState::Stepping;
|
||||||
self.sim_state = SimState::Stepping;
|
self.score = Some(Score {
|
||||||
self.score = Some(Score {
|
cycles: self.machine.step_count(),
|
||||||
cycles: self.machine.step_count(),
|
tiles: self.source_board.count_tiles(),
|
||||||
tiles: self.source_board.count_tiles(),
|
area: 0,
|
||||||
});
|
});
|
||||||
} else if !self.level.outputs().starts_with(self.machine.output()) {
|
|
||||||
self.popup = EndPopup::Failure;
|
|
||||||
self.sim_state = SimState::Stepping;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -335,7 +333,7 @@ impl Editor {
|
||||||
pub fn update(&mut self, rl: &RaylibHandle) {
|
pub fn update(&mut self, rl: &RaylibHandle) {
|
||||||
if rl.is_key_pressed(KeyboardKey::KEY_ESCAPE) {
|
if rl.is_key_pressed(KeyboardKey::KEY_ESCAPE) {
|
||||||
self.sim_state = SimState::Editing;
|
self.sim_state = SimState::Editing;
|
||||||
self.popup = EndPopup::None;
|
self.complete_popup = Popup::Start;
|
||||||
}
|
}
|
||||||
if self.sim_state == SimState::Running {
|
if self.sim_state == SimState::Running {
|
||||||
self.time_since_step += rl.get_frame_time();
|
self.time_since_step += rl.get_frame_time();
|
||||||
|
@ -376,7 +374,7 @@ impl Editor {
|
||||||
}
|
}
|
||||||
SimState::Running => {
|
SimState::Running => {
|
||||||
self.sim_state = SimState::Editing;
|
self.sim_state = SimState::Editing;
|
||||||
self.popup = EndPopup::None;
|
self.complete_popup = Popup::Start;
|
||||||
}
|
}
|
||||||
SimState::Stepping => self.sim_state = SimState::Running,
|
SimState::Stepping => self.sim_state = SimState::Running,
|
||||||
}
|
}
|
||||||
|
@ -513,7 +511,7 @@ impl Editor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.popup == EndPopup::Success {
|
if self.complete_popup == Popup::Visible {
|
||||||
let width = 320;
|
let width = 320;
|
||||||
let height = 165;
|
let height = 165;
|
||||||
let x = d.get_screen_width() / 2 - width / 2;
|
let x = d.get_screen_width() / 2 - width / 2;
|
||||||
|
@ -522,12 +520,14 @@ impl Editor {
|
||||||
d.draw_text("Level Complete!", x + 45, y + 10, 30, Color::LIME);
|
d.draw_text("Level Complete!", x + 45, y + 10, 30, Color::LIME);
|
||||||
if let Some(score) = &self.score {
|
if let Some(score) = &self.score {
|
||||||
d.draw_text("cycles", x + 15, y + 45, 20, Color::WHITE);
|
d.draw_text("cycles", x + 15, y + 45, 20, Color::WHITE);
|
||||||
draw_usize(d, textures, score.cycles, x + 10, y + 70, 9, 2);
|
draw_usize(d, textures, score.cycles, x + 10, y + 70, 6, 2);
|
||||||
d.draw_text("tiles", x + 215, y + 45, 20, Color::WHITE);
|
d.draw_text("tiles", x + 145, y + 45, 20, Color::WHITE);
|
||||||
draw_usize(d, textures, score.tiles, x + 210, y + 70, 5, 2);
|
draw_usize(d, textures, score.tiles, x + 140, y + 70, 4, 2);
|
||||||
|
d.draw_text("area", x + 155 + 80, y + 45, 20, Color::WHITE);
|
||||||
|
draw_usize(d, textures, score.area, x + 150 + 80, y + 70, 4, 2);
|
||||||
}
|
}
|
||||||
if simple_button(d, x + 10, y + 110, 140, 45) {
|
if simple_button(d, x + 10, y + 110, 140, 45) {
|
||||||
self.popup = EndPopup::Dismissed;
|
self.complete_popup = Popup::Dismissed;
|
||||||
}
|
}
|
||||||
d.draw_text("continue\nediting", x + 15, y + 115, 20, Color::WHITE);
|
d.draw_text("continue\nediting", x + 15, y + 115, 20, Color::WHITE);
|
||||||
|
|
||||||
|
@ -542,20 +542,6 @@ impl Editor {
|
||||||
Color::WHITE,
|
Color::WHITE,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.popup == EndPopup::Failure {
|
|
||||||
let width = 320;
|
|
||||||
let height = 165;
|
|
||||||
let x = d.get_screen_width() / 2 - width / 2;
|
|
||||||
let y = d.get_screen_height() / 2 - height / 2;
|
|
||||||
d.draw_rectangle(x, y, width, height, BG_DARK);
|
|
||||||
d.draw_text("Level Failed!", x + 45, y + 10, 30, Color::RED);
|
|
||||||
d.draw_text("incorrect output", x + 45, y + 45, 20, Color::WHITE);
|
|
||||||
if simple_button(d, x + 10, y + 110, 300, 25) {
|
|
||||||
self.popup = EndPopup::Dismissed;
|
|
||||||
}
|
|
||||||
d.draw_text("ok :(", x + 15, y + 115, 20, Color::WHITE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn draw_top_bar(&mut self, d: &mut RaylibDrawHandle, textures: &Textures) {
|
fn draw_top_bar(&mut self, d: &mut RaylibDrawHandle, textures: &Textures) {
|
||||||
|
@ -607,7 +593,7 @@ impl Editor {
|
||||||
draw_scaled_texture(d, textures.get("pause"), 260, 4, 2.);
|
draw_scaled_texture(d, textures.get("pause"), 260, 4, 2.);
|
||||||
if simple_button(d, 296, 4, 32, 32) {
|
if simple_button(d, 296, 4, 32, 32) {
|
||||||
self.sim_state = SimState::Editing;
|
self.sim_state = SimState::Editing;
|
||||||
self.popup = EndPopup::None;
|
self.complete_popup = Popup::Start;
|
||||||
}
|
}
|
||||||
draw_scaled_texture(d, textures.get("stop"), 296, 4, 2.);
|
draw_scaled_texture(d, textures.get("stop"), 296, 4, 2.);
|
||||||
}
|
}
|
||||||
|
@ -618,7 +604,7 @@ impl Editor {
|
||||||
draw_scaled_texture(d, textures.get("play"), 260, 4, 2.);
|
draw_scaled_texture(d, textures.get("play"), 260, 4, 2.);
|
||||||
if simple_button(d, 296, 4, 32, 32) {
|
if simple_button(d, 296, 4, 32, 32) {
|
||||||
self.sim_state = SimState::Editing;
|
self.sim_state = SimState::Editing;
|
||||||
self.popup = EndPopup::None;
|
self.complete_popup = Popup::Start;
|
||||||
}
|
}
|
||||||
draw_scaled_texture(d, textures.get("stop"), 296, 4, 2.);
|
draw_scaled_texture(d, textures.get("stop"), 296, 4, 2.);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,6 +21,7 @@ pub struct Solution {
|
||||||
pub struct Score {
|
pub struct Score {
|
||||||
pub cycles: usize,
|
pub cycles: usize,
|
||||||
pub tiles: usize,
|
pub tiles: usize,
|
||||||
|
pub area: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Solution {
|
impl Solution {
|
||||||
|
@ -58,8 +59,8 @@ impl Solution {
|
||||||
pub fn score_text(&self) -> String {
|
pub fn score_text(&self) -> String {
|
||||||
if let Some(score) = &self.score {
|
if let Some(score) = &self.score {
|
||||||
format!(
|
format!(
|
||||||
"C: {} T: {}",
|
"C: {} T: {} A: {}",
|
||||||
score.cycles, score.tiles
|
score.cycles, score.tiles, score.area
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
"unsolved".into()
|
"unsolved".into()
|
||||||
|
|
Loading…
Add table
Reference in a new issue