summaryrefslogtreecommitdiff
path: root/src/cell.rs
blob: 6571cd5b078f37d8e4dcc5527bef1aa94393f963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
use crate::constants;
use bevy::prelude::*;
use bevy::utils::Duration;
use rand::{
    distributions::{Distribution, Standard},
    Rng,
};

#[derive(Component)]
pub struct AnimationTimer {
    timer: Timer,
}

impl AnimationTimer {
    pub fn from_seconds(duration: f32, mode: TimerMode) -> AnimationTimer {
        AnimationTimer {
            timer: Timer::from_seconds(duration, mode),
        }
    }

    pub fn finished(&self) -> bool {
        self.timer.finished()
    }

    pub fn tick(&mut self, delta: Duration) -> &Timer {
        self.timer.tick(delta)
    }

    pub fn just_finished(&self) -> bool {
        self.timer.just_finished()
    }

    pub fn reset(&mut self) {
        self.timer.reset();
    }

    pub fn set_duration(&mut self, duration: Duration) {
        self.timer.set_duration(duration);
    }

    pub fn repeating(&self) -> bool {
        self.timer.mode() == TimerMode::Repeating
    }
}

#[derive(Debug, PartialEq, Clone, Copy, Default)]
pub enum Occupant {
    #[default]
    None,
    Green,
    Yellow,
    Red,
    Blue,
    Purple,
    Explosion,
}

impl Occupant {
    pub fn to_index(&self) -> usize {
        match self {
            Occupant::Green => constants::TILESHEET_GREEN,
            Occupant::Yellow => constants::TILESHEET_YELLOW,
            Occupant::Red => constants::TILESHEET_RED,
            Occupant::Blue => constants::TILESHEET_BLUE,
            Occupant::Purple => constants::TILESHEET_PURPLE,
            Occupant::Explosion => constants::TILESHEET_EXPLOSION1,
            Occupant::None => 0,
        }
    }
}

impl Distribution<Occupant> for Standard {
    fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Occupant {
        match rng.gen_range(0..=4) {
            0 => Occupant::Green,
            1 => Occupant::Yellow,
            2 => Occupant::Blue,
            3 => Occupant::Red,
            4 => Occupant::Purple,
            _ => Occupant::None,
        }
    }
}

#[derive(Debug, Clone, Default, Copy, Component)]
pub struct Cell {
    pub x: usize,
    pub y: usize,
    pub occupant: Occupant,
    pub selected: bool,
    pub hovered: bool,
}

impl Cell {
    pub fn new(x: usize, y: usize) -> Cell {
        Cell {
            x,
            y,
            occupant: Occupant::None,
            selected: false,
            hovered: false,
        }
    }

    pub fn set_occupant(&mut self, occupant: Occupant, sprite: &mut TextureAtlasSprite) {
        self.occupant = occupant;
        sprite.index = self.occupant.to_index();
    }
}

pub fn insert(mut q: Query<(&mut Cell, &mut TextureAtlasSprite)>) {
    for (mut cell, mut sprite) in q.iter_mut() {
        if cell.occupant == Occupant::None && cell.y == constants::GRID_SIZE - 1 {
            cell.set_occupant(rand::random(), &mut sprite);
        }
    }
}

pub fn start_explosion(
    mut commands: Commands,
    mut q: Query<(Entity, &Cell), Without<AnimationTimer>>,
) {
    for (entity, cell) in q.iter_mut() {
        if cell.occupant == Occupant::Explosion {
            commands
                .entity(entity)
                .insert(AnimationTimer::from_seconds(0.1, TimerMode::Repeating));
        }
    }
}

pub fn check(mut q: Query<(&mut Cell, &mut TextureAtlasSprite)>) {
    let mut cells = [[Cell::default(); constants::GRID_SIZE]; constants::GRID_SIZE];
    for (cell, _) in q.iter_mut() {
        cells[cell.x][cell.y] = *cell;
    }

    let mut last = Occupant::None;
    let mut connected = Vec::new();

    for (i, row) in cells.iter().enumerate() {
        let mut c = Vec::new();
        for (j, _) in row.iter().enumerate() {
            if cells[i][j].occupant == last && last != Occupant::None && last != Occupant::Explosion
            {
                c.push((i, j));
                c.push((i, j - 1));
            } else {
                connected.push(c.clone());
                c.clear();
            }
            last = cells[i][j].occupant;
        }
        connected.push(c);
        last = Occupant::None;
    }

    for (i, row) in cells.iter().enumerate() {
        let mut c = Vec::new();
        for (j, _) in row.iter().enumerate() {
            if cells[j][i].occupant == last && last != Occupant::None && last != Occupant::Explosion
            {
                c.push((j, i));
                c.push((j - 1, i));
            } else {
                connected.push(c.clone());
                c.clear();
            }
            last = cells[j][i].occupant;
        }
        connected.push(c);
        last = Occupant::None;
    }

    connected.retain(|c| c.len() > 4);

    for c in connected.iter() {
        for (i, j) in c.iter() {
            for (mut cell, mut sprite) in q.iter_mut() {
                if &cell.x == i && &cell.y == j && cell.occupant != Occupant::Explosion {
                    cell.set_occupant(Occupant::Explosion, &mut sprite);
                }
            }
        }
    }
}

pub fn falling(mut q: Query<(&mut Cell, &mut TextureAtlasSprite)>) {
    let mut have_gems = Vec::new();
    for (cell, _sprite) in q.iter_mut() {
        if cell.occupant != Occupant::None {
            have_gems.push(*cell);
        }
    }

    let mut moved_gems = Vec::new();
    for (mut cell, mut sprite) in q.iter_mut() {
        if cell.occupant == Occupant::None {
            if let Some(c) = have_gems
                .iter()
                .find(|&c| (c.x, c.y) == (cell.x, cell.y + 1))
            {
                cell.set_occupant(c.occupant, &mut sprite);
                moved_gems.push(c);
            }
        }
    }

    for (mut cell, mut sprite) in q.iter_mut() {
        if moved_gems.iter().any(|c| (c.x, c.y) == (cell.x, cell.y)) {
            cell.set_occupant(Occupant::None, &mut sprite);
        }
    }
}