Compare commits

..

No commits in common. "7574ec20f5eaafd26d2cb94e0b301896af50a4b2" and "e7f424aadc4675752230b0013e5dd149c40d6d05" have entirely different histories.

11 changed files with 50 additions and 90 deletions

View file

@ -6,7 +6,7 @@ use std::{
use serde::{Deserialize, Serialize};
use crate::{marble_engine::board::Board, util::userdata_dir};
use crate::{marble_engine::board::Board, userdata_dir};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Blueprint {

View file

@ -15,6 +15,7 @@ use crate::{
theme::*,
ui::*,
util::*,
TILE_TEXTURE_SIZE,
};
const HEADER_HEIGHT: i32 = 40;

View file

@ -1,8 +0,0 @@
pub mod blueprint;
pub mod editor;
pub mod level;
pub mod marble_engine;
pub mod solution;
pub mod theme;
pub mod ui;
pub mod util;

View file

@ -5,7 +5,14 @@ use std::{
use raylib::prelude::*;
use marble_machinations::*;
mod blueprint;
mod editor;
mod level;
mod marble_engine;
mod solution;
mod theme;
mod ui;
mod util;
use editor::{Editor, ExitState};
use level::{Chapter, Level};
@ -16,6 +23,8 @@ use util::*;
const TITLE_TEXT: &str = concat!("Marble Machinations v", env!("CARGO_PKG_VERSION"));
pub const TILE_TEXTURE_SIZE: f32 = 16.0;
struct Game {
levels: Vec<LevelListEntry>,
level_scroll: usize,

View file

@ -3,11 +3,12 @@ use raylib::prelude::*;
pub mod board;
pub mod pos;
pub mod tile;
use crate::{theme::TILE_TEXTURE_SIZE, ui::draw_usize_small, util::Textures};
use board::Board;
use pos::*;
use tile::*;
use crate::{ui::draw_usize_small, Textures, TILE_TEXTURE_SIZE};
#[derive(Debug)]
pub struct Machine {
board: Board,
@ -260,15 +261,19 @@ impl Machine {
let Some(Tile::Open(OpenTile::Blank, claim)) = self.board.get_mut(pos) else {
unreachable!()
};
if claim.claim_indirect() {
claim_positions.push(pos);
*claim = match claim {
Claim::Free => {
claim_positions.push(pos);
Claim::Claimed
}
Claim::Claimed | Claim::Blocked => Claim::Blocked,
_ => unreachable!(),
}
}
// create new marbles
// new marbles are past old_marbles index, so will not move this step
for (pos, value, dir) in new_marbles {
let Some(Tile::Open(OpenTile::Blank, Claim::ClaimedIndirect)) = self.board.get_mut(pos)
else {
let Some(Tile::Open(OpenTile::Blank, Claim::Claimed)) = self.board.get_mut(pos) else {
continue;
};
self.board.set(pos, Tile::Marble { value, dir });
@ -286,9 +291,16 @@ impl Machine {
continue;
};
if let Tile::Open(_type, claim) = front_tile {
if claim.claim() {
claim_positions.push(front_pos);
}
*claim = match claim {
Claim::Free => {
claim_positions.push(front_pos);
Claim::Claimed
}
Claim::ClaimedIndirect => Claim::Claimed,
Claim::BlockedIndirect => Claim::Claimed,
Claim::Claimed => Claim::Blocked,
Claim::Blocked => Claim::Blocked,
};
} else {
let target_pos = match front_tile {
Tile::Arrow(d) => d.step(front_pos),
@ -300,9 +312,16 @@ impl Machine {
continue;
};
if let Tile::Open(_type, claim) = target_tile {
if claim.claim_indirect() {
claim_positions.push(front_pos);
}
*claim = match claim {
Claim::Free => {
claim_positions.push(front_pos);
Claim::ClaimedIndirect
}
Claim::ClaimedIndirect => Claim::BlockedIndirect,
Claim::BlockedIndirect => Claim::BlockedIndirect,
Claim::Claimed => Claim::Claimed,
Claim::Blocked => Claim::Blocked,
};
}
}
}

View file

@ -1,10 +1,10 @@
use raylib::prelude::*;
use crate::TILE_TEXTURE_SIZE;
use crate::{draw_scaled_texture, Textures};
use super::{tile::*, Pos, PosInt};
use crate::{
theme::TILE_TEXTURE_SIZE,
util::{draw_scaled_texture, Textures},
};
use super::tile::*;
use super::Pos;
use super::PosInt;
use raylib::prelude::*;
#[derive(Debug, Clone, PartialEq)]
pub struct Board {

View file

@ -485,35 +485,3 @@ impl Comparison {
}
}
}
impl Claim {
#[must_use]
/// returns `was_free`
pub fn claim(&mut self) -> bool {
let mut was_free = false;
*self = match self {
Claim::Free => {
was_free = true;
Claim::Claimed
}
Claim::ClaimedIndirect | Claim::BlockedIndirect => Claim::Claimed,
Claim::Claimed | Claim::Blocked => Claim::Blocked,
};
was_free
}
#[must_use]
/// returns `was_free`
pub fn claim_indirect(&mut self) -> bool {
let mut was_free = false;
*self = match self {
Claim::Free => {
was_free = true;
Claim::ClaimedIndirect
}
Claim::ClaimedIndirect => Claim::BlockedIndirect,
_ => *self,
};
was_free
}
}

View file

@ -6,7 +6,7 @@ use std::{
use serde::{Deserialize, Serialize};
use crate::{level::Level, util::userdata_dir};
use crate::{level::Level, userdata_dir};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Solution {

View file

@ -1,7 +1,5 @@
use raylib::prelude::*;
pub const TILE_TEXTURE_SIZE: f32 = 16.0;
pub const BG_WORLD: Color = gray(48);
pub const FG_GRID: Color = gray(64);

View file

@ -1,6 +1,6 @@
use std::ops::Range;
use crate::{theme::*, util::draw_scaled_texture, util::MouseInput, util::Scroll, util::Textures};
use crate::{draw_scaled_texture, theme::*, MouseInput, Scroll, Textures};
use raylib::prelude::*;
#[derive(Debug)]

View file

@ -1,27 +0,0 @@
use marble_machinations::marble_engine::{board::Board, Machine};
#[test]
fn creating_marbles_cause_indirect_claim() {
let mut eng = Machine::new_empty();
eng.set_board(Board::parse(
"
I
o 2
B- o
B | |-*-|
|-+o | |
*-| |* -B B-
1 3
I I
",
));
for _ in 0..9 {
eng.step();
}
assert_eq!(eng.output(), [1, 2, 3]);
}