]> Shamusworld >> Repos - virtualjaguar/blob - docs/WHATSNEW
Updates for 1.0.8 release
[virtualjaguar] / docs / WHATSNEW
1 Virtual Jaguar v1.0.8 GCC/SDL
2 -----------------------------
3
4 * Switched OpenGL rendering to 32 BPP. This is not only how a real Jaguar
5   renders graphics, but it also gives VJ a nice speed boost. ;-) [Shamus]
6
7
8 Virtual Jaguar v1.0.7 GCC/SDL
9 -----------------------------
10
11 * Various fixes to make for smoother compilation on MacOS. [Adam Green]
12 * Fixes to filetype parsing. VJ now properly recognizes .abs, .jag, .rom,
13   and .j64 files--be sure to check the README for the gory details! [Shamus]
14 * Added a kludge to allow homebrew demos to run without a Stubulator ROM and
15   without crashing the emulator. [Shamus]
16 * Fixed a blitter intensity addition problem. This fixes the title in Hover
17   Strike and the road/shadows in Checkered Flag. [Shamus]
18 * Partially fixed a problem with the SUBC opcode in the RISC processors. This
19   allows Hover Strike, Phase Zero and Fight For Life to boot into their title
20   screens and makes them somewhat playable. [Shamus]
21 * Fixed a horizontal scaling problem in the OP and the off-by-one bug that it
22   reintroduced. This fixes the road in Atari Karts and probably a few others.
23   [Shamus]
24 * Fixed a long standing blitter bug that kept certain doors in AvP from
25   rendering correctly. [Shamus]
26 * Fixed some vertical positioning bugs in the OP. Now Checkered Flag, Alien
27   vs Predator and probably others now work as they should (graphically ;-)
28   [Caz]
29 * Better GUI support. Most options in the GUI work now, and more are expected
30   to be functional in the near future. [Shamus]
31 * Fixed a few more lingering blitter bugs (there are more to be found). This
32   fixes most of the glitches in Cybermorph and Alien vs Predator. [Shamus]
33 * Fixed an Object Processor scaled bitmap bug that caused incorrect
34   positioning of scaled bitmaps that started outside the line buffer, and
35   also fixed a problem that caused the OP to hang in certain situations. This
36   fixes Bubsy, International Sensible Soccer, and probably a few others.
37   [Shamus]
38 * Cleaned up various bits of video rendering related code. [nwagenaar]
39 * Added support for OpenGL textures with a depth of 16bpp, 24bpp or 32bpp.
40   [nwagenaar]
41 * Rewrote several OpenGL related rendering code concerning the new OpenGL
42   texture depths and texture sizes. [nwagenaar]
43 * Rewrote several OpenGL rendering functions concerning speed related items.
44   [nwagenaar]
45 * Several bugs resolved due to OpenGL and normal rendering code. [nwagenaar]
46 * Default resolution for OpenGL is now 640x480 [nwagenaar];
47
48
49 Virtual Jaguar v1.0.6 GCC/SDL
50 -----------------------------
51
52 * Added support for gzipped ROM files. [Adam Green]
53 * Added OpenGL support. Because of this, aspect ratios in the various
54   graphic modes should be correct now. Thanks goes to Niels for enlightenment
55   in this area. :-) [Shamus]
56 * Moved all platform specific video code to video.cpp. This should make it
57   easier to add functionality to the video subsystem without having to chase
58   code around in places where it didn't belong. [Shamus]
59 * Key bindings are now customizable. [Shamus]
60 * VJ now uses a config file (vj.cfg) for commonly used settings. Settings in
61   the config file can still be overridden by command line switches. [Shamus]
62 * Preliminary GUI mouse support. [Shamus]
63 * Fixed an off-by-one bug in the Object Processor when dealing with scaled
64   bitmap objects. [Shamus]
65 * Fully virtualized screen size. What this means is that we can keep the
66   Jagaur screen displayed in a convenient size (320 x 240) and the graphics
67   that various ROMs display will now be properly centered (more or less, they
68   were really centered for a TV display). [Shamus]
69 * Border color is now displayed properly. [Shamus]
70 * Fully pipelined DSP core. Because of this, Wolfenstein 3D now has sound. To
71   use the old core, use the -nopipeline switch. [Shamus]
72
73
74 Virtual Jaguar v1.0.5 GCC/SDL
75 -----------------------------
76
77 * Various fixes to the codebase so that it compiles and works properly on
78   Linux. :-) The makefiles are almost identical now, the only thing that's
79   different between them are the SYSTYPE and EXESUFFIX variables defined at
80   the top. [Shamus]
81 * Fixed a pernicious blitter bug that kept Rayman from doing proper collision
82   detection. [Shamus]
83 * Added a simple file selector so that typing in long filenames in order to
84   run the emulator is no longer necessary. :-) To use it, instead of
85   supplying a ROM name, simply put in the name of the directory where your
86   ROMs live. [Shamus]
87 * Removed all the assembly language code from the DSP, so it should be a
88   little less buggy now. Also, removed some brain-dead timeslice releasing
89   that was causing a bunch of problems with various ROMs. [Shamus]
90 * Added sound support! In order to hear any sound, you probably have to
91   start VJ with the -dspon switch. Also, unless you have a very fast computer
92   the sound is going to be choppy. Hopefully future optimizations will cure
93   this. ;-) [Shamus]
94 * Added GUI support. You can see the results by hitting the TAB key while the
95   emulator is running. ;-) [Shamus]
96 * Lots of cleanups to the source code including the ability to trace who
97   writes what to where. [Shamus]
98
99
100 Virtual Jaguar v1.0.4 GCC/SDL - source only release
101 ---------------------------------------------------
102
103 * Lots of bugfixes. [Shamus]
104 * Jaguar BIOS now works properly and is used by default. BIOS failure was
105   due to a bug in the GPU (specifically in the SUBC and ADDC opcodes). To
106   override this behavior, use the -nobios switch. [Shamus]
107 * Rewrote the OP code--mostly because it was pissing me off. ;-) Not
108   to mention that it was almost completely unmaintainable in its former
109   state and was just plain wrong in its implementation in many places.
110   Because of this, some RMW effects that were missing from AvP are present
111   now and leftover crud in scaled bitmaps in Rayman is gone now. ;-) [Shamus]
112 * ZIP support! Now there is no longer any need to unzip ROMs (although if
113   you prefer to waste HD space, VJ will gladly accomodate you). The code to
114   support this is a pretty ugly hack, but it works and there are other fish
115   to fry at the moment. Also, ZLIB is now required to compile VJ. [Shamus]
116 * Support for PD ROMs. Currently the only one that works at all is JagMania,
117   though as the hardware emulation gets better more PD ROMs will begin to
118   work. Note that you must use the -nobios switch for this to work. [Shamus]
119 * Preliminary support for PAL Jaguar emulation. Default is NTSC. To use it,
120   use the -pal switch. [Shamus]
121 * Support for DSP activation. The DSP is now *off* by default, since it
122   doesn't work properly yet. Use the -dspon switch to force the DSP on.
123   [Shamus]
124 * Removed all hacks that were written to support a specific ROM from the OP
125   and GPU code (much more remains to be removed). Since the CRCs that were
126   calculated to support these hacks were done on byte swapped ROMs, they
127   weren't working anyway. Besides which, a hack means that you don't
128   understand the hardware properly and/or don't know how to write the code to
129   properly emulate the hardware. ;-) [Shamus]
130 * Renamed the executable from the ridiculously named jag_em to the more
131   sensibly named vj. Note that the Jag_em.cpp file has also been changed to
132   reflect this name change. [Shamus]
133 * Removed Aaron Giles 68K dissasembler in favor of the one included with the
134   Musashi core. It's there, why not use it? ;-) [Shamus]
135 * Reordered the order of A, B, and C buttons to more accurately reflect their
136   respective positions on a real Jaguar controller. Also fixed a small bug that
137   kept the number pad from reporting the right numbers to the emulator. :-)
138   [Shamus]
139 * Started to remove the !__PORT__ defintions from the source code. Since this
140   is supposed to be a portable emulator, we won't be using any MS specific
141   code anyway. [Shamus]
142 * Fixed some problems with the blitter when doing clipping and bit expansion.
143   Also fixed (reintroduced?) a bug that existed in the real blitter HW (the
144   YADD1 bit in A2--fixes Tempest 2000). [Shamus]
145 * Probably a bunch of other stuff that I've forgotten about. ;-) [Shamus]
146
147 NOTE: Tested only on WIN32 platform! ;-)
148
149
150 Virtual Jaguar v1.0.3 GCC/SDL - source only release
151 ---------------------------------------------------
152
153 * Converted GNU assembly in the GPU core to C code -- Rayman and
154   Alien vs Predator work again. :-) [Shamus]
155 * Removed closed source Starscream and replaced it with the open source
156   Musashi core. Because of this, VJ runs a little faster now. :-) [Shamus]
157 * Various cleanups to the source files (still lots of work to do!) [Shamus]
158
159 NOTE: Tested only on WIN32 platform!
160
161
162 1.0.1 - 1.0.2 - Unreleased, mostly for testing/finding bugs
163 -----------------------------------------------------------
164
165 * Lots of stuff happened, but we can't remember any of it. :-)
166
167
168 Virtual Jaguar v1.0.0 GCC/SDL - initial source release
169 ------------------------------------------------------
170
171 * Converted VC++ assembly to standard GNU assembly;
172 * Fixed small bugs in SDL related items (keyboard/graphics);
173 * Added *some* optimalisations to the graphics sources;
174 * Added joystick support (not tested);
175 * Added joystick port support (not tested);
176 * Added frameskip support;
177
178 Source only release. Tested on BeOS, Linux, FreeBSD and WIN32.
179 SOUND emulation was NOT done. Need help with this one :)
180
181
182 SDLEMU (Niels Wagenaar & Caz) - http://sdlemu.ngemu.com