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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
use std::{
  cell::{Cell, RefCell},
  rc::Rc,
  sync::Arc,
};

use crate::{
  cpu::mos6502::{Mos6502, Mos6502Variant},
  cpu::Cpu,
  keyboard::{
    commodore::{C64KeyboardAdapter, C64SymbolAdapter, C64VirtualAdapter},
    KeyAdapter, KeyMappingStrategy, SymbolAdapter,
  },
  memory::{
    mos652x::Cia, BankedMemory, BlockMemory, BranchMemory, Mos6510Port, NullMemory, NullPort, Port,
  },
  platform::{PlatformProvider, WindowConfig},
  systems::System,
};

mod keyboard;
mod roms;
mod vic_ii;

use instant::Duration;
pub use roms::C64SystemRoms;

use self::{
  keyboard::KEYBOARD_MAPPING,
  vic_ii::{VicIIChip, VicIIChipIO},
};

use super::BuildableSystem;

/// Port A on the first CIA chip on the C64 deals with setting the keyboard row being scanned.
struct C64Cia1PortA {
  keyboard_row: Rc<Cell<u8>>,
}

impl C64Cia1PortA {
  pub fn new() -> Self {
    Self {
      keyboard_row: Rc::new(Cell::new(0)),
    }
  }

  /// Return a reference to the keyboard column's current value.
  pub fn get_keyboard_row(&self) -> Rc<Cell<u8>> {
    self.keyboard_row.clone()
  }
}

impl Port for C64Cia1PortA {
  fn read(&mut self) -> u8 {
    self.keyboard_row.get()
  }

  fn write(&mut self, value: u8) {
    self.keyboard_row.set(value);
  }

  fn poll(&mut self, _cycles_since_poll: u64, _total_cycle_count: u64) -> bool {
    false
  }

  fn reset(&mut self) {}
}

/// Port B on the first CIA chip on the C64 deals with reading columns of the keyboard matrix.
struct C64Cia1PortB {
  keyboard_row: Rc<Cell<u8>>,
  mapping_strategy: KeyMappingStrategy,
  platform: Arc<dyn PlatformProvider>,
}

impl C64Cia1PortB {
  /// Create a new instance of the port, with the given keyboard column,
  /// reading the key status from the given platform.
  pub fn new(
    keyboard_row: Rc<Cell<u8>>,
    mapping_strategy: KeyMappingStrategy,
    platform: Arc<dyn PlatformProvider>,
  ) -> Self {
    Self {
      keyboard_row,
      mapping_strategy,
      platform,
    }
  }
}

impl Port for C64Cia1PortB {
  fn read(&mut self) -> u8 {
    let row_mask = self.keyboard_row.get();

    let mut value = 0b1111_1111;

    let state = match &self.mapping_strategy {
      KeyMappingStrategy::Physical => C64KeyboardAdapter::map(&self.platform.get_key_state()),
      KeyMappingStrategy::Symbolic => {
        C64SymbolAdapter::map(&SymbolAdapter::map(&self.platform.get_key_state()))
      }
    };

    let state = state | C64VirtualAdapter::map(&self.platform.get_virtual_key_state());

    for (y, row) in KEYBOARD_MAPPING.iter().enumerate() {
      for (x, key) in row.iter().enumerate() {
        if ((!row_mask & (1 << y)) != 0) && state.is_pressed(*key) {
          value &= !(1 << x);
        }
      }
    }

    value
  }

  fn write(&mut self, _value: u8) {
    panic!("Tried to write to keyboard row");
  }

  fn poll(&mut self, _cycles_since_poll: u64, _total_cycle_count: u64) -> bool {
    false
  }

  fn reset(&mut self) {}
}

/// Bank switching implementation performed using the 6510's I/O port.
/// Source: <https://www.c64-wiki.com/wiki/Bank_Switching>
pub struct C64BankSwitching {
  /// CPU Control Lines
  hiram: bool,
  loram: bool,
  charen: bool,

  /// Selectors to choose what is mapped in each memory region.
  selectors: [Rc<Cell<usize>>; 6],
}

impl C64BankSwitching {
  pub fn new(mut selectors: [Rc<Cell<usize>>; 6]) -> Self {
    selectors.iter_mut().for_each(|s| s.set(0));
    Self {
      hiram: true,
      loram: true,
      charen: true,
      selectors,
    }
  }
}

impl Port for C64BankSwitching {
  fn read(&mut self) -> u8 {
    (self.loram as u8) | (self.hiram as u8) << 1 | (self.charen as u8) << 2
  }

  #[allow(clippy::bool_to_int_with_if)]
  fn write(&mut self, value: u8) {
    self.loram = (value & 0b001) != 0;
    self.hiram = (value & 0b010) != 0;
    self.charen = (value & 0b100) != 0;

    // TODO: EXROM, GAME signals

    // Region 2: RAM or inaccessible
    self.selectors[0].set(0);

    // Region 3: RAM or Cartridge ROM Low
    self.selectors[1].set(0);

    // Region 4: BASIC ROM, RAM, Cartridge ROM High, or inaccessible
    self.selectors[2].set(if self.hiram && self.loram { 0 } else { 1 });

    // Region 5: RAM or inaccessible
    self.selectors[3].set(0);

    // Region 6: I/O, RAM, or character rom
    self.selectors[4].set(if !self.hiram && !self.loram {
      1
    } else if !self.charen {
      2
    } else {
      0
    });

    // Region 7: Kernal ROM or RAM
    self.selectors[5].set(if !self.hiram { 1 } else { 0 });
  }

  fn poll(&mut self, _cycles_since_poll: u64, _total_cycle_count: u64) -> bool {
    false
  }

  fn reset(&mut self) {
    self.hiram = true;
    self.loram = true;
    self.charen = true;
  }
}

/// Configuration for a Commodore 64 system.
pub struct C64SystemConfig {
  pub mapping: KeyMappingStrategy,
}

impl BuildableSystem<C64SystemRoms, C64SystemConfig> for C64System {
  fn build(
    roms: C64SystemRoms,
    config: C64SystemConfig,
    platform: Arc<dyn PlatformProvider>,
  ) -> Box<dyn System> {
    platform.request_window(WindowConfig::new(
      vic_ii::FULL_WIDTH,
      vic_ii::FULL_HEIGHT,
      2.0,
    ));

    // Region 1: 0x0000 - 0x0FFF
    let region1 = BlockMemory::ram(0x1000);

    // Region 2: 0x1000 - 0x7FFF
    let selector2 = Rc::new(Cell::new(0));
    let region2 = BankedMemory::new(selector2.clone())
      .bank(BlockMemory::ram(0x7000))
      .bank(NullMemory::new());

    // Region 3: 0x8000 - 0x9FFF
    let selector3 = Rc::new(Cell::new(0));
    let region3 = BankedMemory::new(selector3.clone())
      .bank(BlockMemory::ram(0x2000))
      .bank(NullMemory::new()); // TODO: Cartridge Rom Low

    // Region 4: 0xA000 - 0xBFFF
    let selector4 = Rc::new(Cell::new(0));
    let region4 = BankedMemory::new(selector4.clone())
      .bank(BlockMemory::from_file(0x2000, roms.basic))
      .bank(BlockMemory::ram(0x2000))
      .bank(NullMemory::new()) // TODO: Cartridge Rom High
      .bank(NullMemory::new());

    // Region 5: 0xC000 - 0xCFFF
    let selector5 = Rc::new(Cell::new(0));
    let region5 = BankedMemory::new(selector5.clone())
      .bank(BlockMemory::ram(0x1000))
      .bank(NullMemory::new());

    // Region 6: 0xD000 - 0xDFFF
    let selector6 = Rc::new(Cell::new(0));

    let character_rom = BlockMemory::from_file(0x1000, roms.character.clone());
    let vic_ii = Rc::new(RefCell::new(VicIIChip::new(Box::new(character_rom))));
    let vic_io = VicIIChipIO::new(vic_ii.clone()); // TODO: bank switching!

    let port_a = C64Cia1PortA::new();
    let keyboard_col = port_a.get_keyboard_row();
    let cia_1 = Cia::new(
      Box::new(port_a),
      Box::new(C64Cia1PortB::new(
        keyboard_col,
        config.mapping,
        platform.clone(),
      )),
    );

    let cia_2 = Cia::new(Box::new(NullPort::new()), Box::new(NullPort::new()));

    let region6 = BankedMemory::new(selector6.clone())
      .bank(
        BranchMemory::new()
          .map(0x000, vic_io)
          .map(0x400, NullMemory::new()) // TODO: SID
          .map(0x800, BlockMemory::ram(0x0400))
          .map(0xC00, cia_1)
          .map(0xD00, cia_2)
          .map(0xE00, NullMemory::new()) // TODO: Expansion card
          .map(0xF00, NullMemory::new()), // TODO: Expansion card
      )
      .bank(BlockMemory::ram(0x1000))
      .bank(BlockMemory::from_file(0x1000, roms.character));

    // Region 7: 0xE000 - 0xFFFF
    let selector7 = Rc::new(Cell::new(0));
    let region7 = BankedMemory::new(selector7.clone())
      .bank(BlockMemory::from_file(0x2000, roms.kernal))
      .bank(BlockMemory::ram(0x2000))
      .bank(NullMemory::new()); // TODO: Cartidge Rom High

    let bank_switching = C64BankSwitching::new([
      selector2, selector3, selector4, selector5, selector6, selector7,
    ]);

    let memory = BranchMemory::new()
      .map(0x0000, Mos6510Port::new(Box::new(bank_switching)))
      .map(0x0002, region1)
      .map(0x1000, region2)
      .map(0x8000, region3)
      .map(0xA000, region4)
      .map(0xC000, region5)
      .map(0xD000, region6)
      .map(0xE000, region7);

    let cpu = Mos6502::new(memory, Mos6502Variant::NMOS);

    Box::new(C64System { cpu, vic: vic_ii })
  }
}

/// The Commodore 64 system.
pub struct C64System {
  cpu: Mos6502,
  vic: Rc<RefCell<VicIIChip>>,
}

impl System for C64System {
  fn get_cpu_mut(&mut self) -> Box<&mut dyn Cpu> {
    Box::new(&mut self.cpu)
  }

  fn tick(&mut self) -> Duration {
    Duration::from_secs_f64(1.0 / 1_000_000.0) * self.cpu.tick() as u32
  }

  fn reset(&mut self) {
    self.cpu.reset();
  }

  fn render(&mut self, framebuffer: &mut [u8], config: WindowConfig) {
    self
      .vic
      .borrow_mut()
      .draw_screen(&mut self.cpu.memory, framebuffer, config)
  }
}