Compare commits
No commits in common. "7574ec20f5eaafd26d2cb94e0b301896af50a4b2" and "e7f424aadc4675752230b0013e5dd149c40d6d05" have entirely different histories.
7574ec20f5
...
e7f424aadc
11 changed files with 50 additions and 90 deletions
|
@ -6,7 +6,7 @@ use std::{
|
||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
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)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
pub struct Blueprint {
|
pub struct Blueprint {
|
||||||
|
|
|
@ -15,6 +15,7 @@ use crate::{
|
||||||
theme::*,
|
theme::*,
|
||||||
ui::*,
|
ui::*,
|
||||||
util::*,
|
util::*,
|
||||||
|
TILE_TEXTURE_SIZE,
|
||||||
};
|
};
|
||||||
|
|
||||||
const HEADER_HEIGHT: i32 = 40;
|
const HEADER_HEIGHT: i32 = 40;
|
||||||
|
|
|
@ -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;
|
|
11
src/main.rs
11
src/main.rs
|
@ -5,7 +5,14 @@ use std::{
|
||||||
|
|
||||||
use raylib::prelude::*;
|
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 editor::{Editor, ExitState};
|
||||||
use level::{Chapter, Level};
|
use level::{Chapter, Level};
|
||||||
|
@ -16,6 +23,8 @@ use util::*;
|
||||||
|
|
||||||
const TITLE_TEXT: &str = concat!("Marble Machinations v", env!("CARGO_PKG_VERSION"));
|
const TITLE_TEXT: &str = concat!("Marble Machinations v", env!("CARGO_PKG_VERSION"));
|
||||||
|
|
||||||
|
pub const TILE_TEXTURE_SIZE: f32 = 16.0;
|
||||||
|
|
||||||
struct Game {
|
struct Game {
|
||||||
levels: Vec<LevelListEntry>,
|
levels: Vec<LevelListEntry>,
|
||||||
level_scroll: usize,
|
level_scroll: usize,
|
||||||
|
|
|
@ -3,11 +3,12 @@ use raylib::prelude::*;
|
||||||
pub mod board;
|
pub mod board;
|
||||||
pub mod pos;
|
pub mod pos;
|
||||||
pub mod tile;
|
pub mod tile;
|
||||||
use crate::{theme::TILE_TEXTURE_SIZE, ui::draw_usize_small, util::Textures};
|
|
||||||
use board::Board;
|
use board::Board;
|
||||||
use pos::*;
|
use pos::*;
|
||||||
use tile::*;
|
use tile::*;
|
||||||
|
|
||||||
|
use crate::{ui::draw_usize_small, Textures, TILE_TEXTURE_SIZE};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Machine {
|
pub struct Machine {
|
||||||
board: Board,
|
board: Board,
|
||||||
|
@ -260,15 +261,19 @@ impl Machine {
|
||||||
let Some(Tile::Open(OpenTile::Blank, claim)) = self.board.get_mut(pos) else {
|
let Some(Tile::Open(OpenTile::Blank, claim)) = self.board.get_mut(pos) else {
|
||||||
unreachable!()
|
unreachable!()
|
||||||
};
|
};
|
||||||
if claim.claim_indirect() {
|
*claim = match claim {
|
||||||
claim_positions.push(pos);
|
Claim::Free => {
|
||||||
|
claim_positions.push(pos);
|
||||||
|
Claim::Claimed
|
||||||
|
}
|
||||||
|
Claim::Claimed | Claim::Blocked => Claim::Blocked,
|
||||||
|
_ => unreachable!(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// create new marbles
|
// create new marbles
|
||||||
// new marbles are past old_marbles index, so will not move this step
|
// new marbles are past old_marbles index, so will not move this step
|
||||||
for (pos, value, dir) in new_marbles {
|
for (pos, value, dir) in new_marbles {
|
||||||
let Some(Tile::Open(OpenTile::Blank, Claim::ClaimedIndirect)) = self.board.get_mut(pos)
|
let Some(Tile::Open(OpenTile::Blank, Claim::Claimed)) = self.board.get_mut(pos) else {
|
||||||
else {
|
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
self.board.set(pos, Tile::Marble { value, dir });
|
self.board.set(pos, Tile::Marble { value, dir });
|
||||||
|
@ -286,9 +291,16 @@ impl Machine {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Tile::Open(_type, claim) = front_tile {
|
if let Tile::Open(_type, claim) = front_tile {
|
||||||
if claim.claim() {
|
*claim = match claim {
|
||||||
claim_positions.push(front_pos);
|
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 {
|
} else {
|
||||||
let target_pos = match front_tile {
|
let target_pos = match front_tile {
|
||||||
Tile::Arrow(d) => d.step(front_pos),
|
Tile::Arrow(d) => d.step(front_pos),
|
||||||
|
@ -300,9 +312,16 @@ impl Machine {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
if let Tile::Open(_type, claim) = target_tile {
|
if let Tile::Open(_type, claim) = target_tile {
|
||||||
if claim.claim_indirect() {
|
*claim = match claim {
|
||||||
claim_positions.push(front_pos);
|
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,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
use raylib::prelude::*;
|
use crate::TILE_TEXTURE_SIZE;
|
||||||
|
use crate::{draw_scaled_texture, Textures};
|
||||||
|
|
||||||
use super::{tile::*, Pos, PosInt};
|
use super::tile::*;
|
||||||
use crate::{
|
use super::Pos;
|
||||||
theme::TILE_TEXTURE_SIZE,
|
use super::PosInt;
|
||||||
util::{draw_scaled_texture, Textures},
|
use raylib::prelude::*;
|
||||||
};
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq)]
|
#[derive(Debug, Clone, PartialEq)]
|
||||||
pub struct Board {
|
pub struct Board {
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ use std::{
|
||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::{level::Level, util::userdata_dir};
|
use crate::{level::Level, userdata_dir};
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||||
pub struct Solution {
|
pub struct Solution {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
use raylib::prelude::*;
|
use raylib::prelude::*;
|
||||||
|
|
||||||
pub const TILE_TEXTURE_SIZE: f32 = 16.0;
|
|
||||||
|
|
||||||
pub const BG_WORLD: Color = gray(48);
|
pub const BG_WORLD: Color = gray(48);
|
||||||
pub const FG_GRID: Color = gray(64);
|
pub const FG_GRID: Color = gray(64);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
use std::ops::Range;
|
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::*;
|
use raylib::prelude::*;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
|
|
@ -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]);
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue