]> Shamusworld >> Repos - virtualjaguar/blob - docs/TODO
2.0.2 release.
[virtualjaguar] / docs / TODO
1 Stuff to add/fix for the next release of Virtual Jaguar
2 -------------------------------------------------------
3
4 - Fix VC behavior to match what a real Jaguar does. Still not sure just what
5   the heck is going on there. [Shamus]
6 - Fix DSP code so that it doesn't hang in a spinlock waiting for the sound
7   buffer to empty. Probably a CS lock contention issue. [Shamus]
8 - Create an EEPROMs directory (or whatever is in EEPROMPath[]) if it doesn't
9   already exist. [Shamus]
10 - It would be nice to have the emulator pick up where you last left off, or at
11   least give you the option of continuing from your last session. This would
12   require save states, 'natch. ;-) [Shamus]
13 - It would be nice to have "save states" for instant save/load capability.
14   [Shamus]
15 - Cycle accuracy for GPU/DSP/OP/Blitter. [Shamus]
16 - Need to propagate blitter fixes in the A1 <- A2 direction to the A1 -> A2
17   direction and the GPU fixes to various instructions to the DSP. [Shamus]
18 - Blitter needs fixing. [Shamus]
19 - Command line switches for frontends. [Shamus]
20 - In emulator screenshots. [Shamus]
21 - Audio/video dumping. [Shamus]
22
23
24 Stuff that was added/fixed
25 --------------------------
26
27 - Need to fix PAL mode to work with the virtual screen code. [DONE--Shamus]
28 - There are a few ROMs that use some "quasi-illegal" 68K instructions. Need
29   to patch the 68K core to deal with these in a better way than they are
30   now. [DONE--Shamus]
31   NOTE: This behavior was verified on Rayman, the problem was due to attempting
32         to press both left & right at the same time!
33 - We need a comprehensive way of determining what gets written where and
34   by whom (i.e., blitter wrote to range $F03000-$F03230) in order to figure
35   out the remaining problems with various ROMs. [DONE--Shamus]
36 - Would also be nice to be able to dynamically change the keybindings for
37   the various keys on the emulated Jaguar controller while inside the emulator.
38   [DONE--Shamus]
39 - Make sure that VJ doesn't crash if the useJaguarBIOS key is set to 1 and the
40   BIOS file isn't available. [DONE--Shamus]
41 - There is a bug either with the GPU or the blitter (most likely the latter)
42   which causes the spinning "A"s in the BIOS startup code to be corrupted
43   when they are showing their backsides. [Shamus] [DONE--Shamus]
44   NOTE: This behavior has been verified on a real Jaguar and as such is not
45         an emulator bug. A Jaguar boot ROM bug, yes, but not ours. ;-)
46 - Make it possible to completely disable the GUI (using a switch like -nogui
47   or the like) for people running VJ in a cabinet. [Shamus] [DONE--Shamus]
48 - Code to stretch the display in a generic way would be nice. [Shamus]
49   [DONE for OpenGL--nwagenaar]
50 - Would be nice to have a GUI for things that are set on the command line or
51   in the config file. [Shamus] [DONE--Shamus]
52 - DSP code needs to be rewritten. [Shamus] [DONE but still work to be done--Shamus]
53 - We need to have an external configuration file for remembering a user's
54   preferences, such as key bindings, etc. [Shamus] [DONE--Shamus]
55 - We need to come up with a way to fix the aspect ratio for pixel modes that
56   aren't square (PWIDTH != 4). [Shamus] [DONE for OpenGL--Shamus]
57 - GUI for ROM selection [Shamus] [DONE--Shamus]
58 - Need to rewrite the main Jaguar execution loop to increment the VC by one
59   instead of by two, which is how the real Jaguar works. [Shamus] [DONE--Shamus]
60 - Sound needs a rewrite. With SDL, this shouldn't be much of a problem.
61   Of course, whoever does this should realize that the PCM outs are probably
62   not being used for a majority of the ROMs out there--according to the JTRM,
63   you're supposed to use the I2S interface to output sound since the PCM outs
64   aren't even physically hooked up in the console! [Shamus] [DONE--Shamus]