bsnes/hiro/cocoa
Tim Allen 82293c95ae Update to v099r14 release.
byuu says:

Changelog:
- (u)int(max,ptr) abbreviations removed; use _t suffix now [didn't feel
  like they were contributing enough to be worth it]
- cleaned up nall::integer,natural,real functionality
  - toInteger, toNatural, toReal for parsing strings to numbers
  - fromInteger, fromNatural, fromReal for creating strings from numbers
  - (string,Markup::Node,SQL-based-classes)::(integer,natural,real)
    left unchanged
  - template<typename T> numeral(T value, long padding, char padchar)
    -> string for print() formatting
    - deduces integer,natural,real based on T ... cast the value if you
      want to override
    - there still exists binary,octal,hex,pointer for explicit print()
      formatting
- lstring -> string_vector [but using lstring = string_vector; is
  declared]
  - would be nice to remove the using lstring eventually ... but that'd
    probably require 10,000 lines of changes >_>
- format -> string_format [no using here; format was too ambiguous]
- using integer = Integer<sizeof(int)*8>; and using natural =
  Natural<sizeof(uint)*8>; declared
  - for consistency with boolean. These three are meant for creating
    zero-initialized values implicitly (various uses)
- R65816::io() -> idle() and SPC700::io() -> idle() [more clear; frees
  up struct IO {} io; naming]
- SFC CPU, PPU, SMP use struct IO {} io; over struct (Status,Registers) {}
  (status,registers); now
  - still some CPU::Status status values ... they didn't really fit into
    IO functionality ... will have to think about this more
- SFC CPU, PPU, SMP now use step() exclusively instead of addClocks()
  calling into step()
- SFC CPU joypad1_bits, joypad2_bits were unused; killed them
- SFC PPU CGRAM moved into PPU::Screen; since nothing else uses it
- SFC PPU OAM moved into PPU::Object; since nothing else uses it
  - the raw uint8[544] array is gone. OAM::read() constructs values from
    the OAM::Object[512] table now
  - this avoids having to determine how we want to sub-divide the two
    OAM memory sections
  - this also eliminates the OAM::synchronize() functionality
- probably more I'm forgetting

The FPS fluctuations are driving me insane. This WIP went from 128fps to
137fps. Settled on 133.5fps for the final build. But nothing I changed
should have affected performance at all. This level of fluctuation makes
it damn near impossible to know whether I'm speeding things up or slowing
things down with changes.
2016-07-01 21:50:32 +10:00
..
action Update to 20160106 OS X Preview for Developers release. 2016-01-07 19:17:15 +11:00
widget Update to v099r14 release. 2016-07-01 21:50:32 +10:00
application.cpp Update to v096r03 release. 2016-01-08 20:23:46 +11:00
application.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
browser-window.cpp Update to v098r10 release. 2016-05-16 19:51:12 +10:00
browser-window.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
desktop.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
desktop.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
font.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
font.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
group.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
group.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
header.hpp Update to v098r11 release. 2016-05-25 21:13:02 +10:00
keyboard.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
keyboard.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
layout.cpp Update to v096r02 (OS X Preview for Developers) release. 2016-01-07 19:17:15 +11:00
layout.hpp Update to v096r02 (OS X Preview for Developers) release. 2016-01-07 19:17:15 +11:00
menu-bar.cpp Update to v096r02 (OS X Preview for Developers) release. 2016-01-07 19:17:15 +11:00
menu-bar.hpp Update to v096r02 (OS X Preview for Developers) release. 2016-01-07 19:17:15 +11:00
message-window.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
message-window.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
monitor.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
monitor.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
mouse.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
mouse.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
object.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
object.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
platform.cpp Update to v098r09 release. 2016-05-04 20:07:13 +10:00
platform.hpp Update to v098r09 release. 2016-05-04 20:07:13 +10:00
popup-menu.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
popup-menu.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
sizable.cpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
sizable.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
status-bar.cpp Update to 20160106 OS X Preview for Developers release. 2016-01-07 19:17:15 +11:00
status-bar.hpp Update to v096r02 (OS X Preview for Developers) release. 2016-01-07 19:17:15 +11:00
timer.cpp Update to v096r03 release. 2016-01-08 20:23:46 +11:00
timer.hpp Update to v096r01 release. 2015-12-30 17:54:59 +11:00
utility.cpp Update to 20160106 OS X Preview for Developers release. 2016-01-07 19:17:15 +11:00
window.cpp Update to v098r09 release. 2016-05-04 20:07:13 +10:00
window.hpp Update to v096r03 release. 2016-01-08 20:23:46 +11:00