Update to v073 release.
byuu says:
This release marks a major step forward, offering full low-level
emulation of all four DSP coprocessors based on the NEC uPD77C25
processor core. Many people were responsible for this milestone: Dr.
Decapitator for the actual decapping and extraction; Lord Nightmare for
the cartridges and some special analysis tools; myself, Jonas Quinn and
Cydrak for the uPD77C25 emulation; and all of the donors who raised the
necessary $1,000 for the necessary hardware and equipment needed to pull
this all off. To say thanks to the donors, I am releasing the uPD77C25
emulation core to the public domain, so that everyone can benefit from
it.
All four DSP emulations will be improved by this by way of having
realistic timing; the DSP-4 will benefit further as the high-level
emulation was incomplete and somewhat buggy; and the DSP-3 will benefit
the most as the high-levle emulation there was not complete enough to be
playable. As a result, most notably, this means bsnes v073 is the first
emulator to fully be able to play SD Gundam GX (J)!
As bsnes' primary goal is accuracy, the LLE DSP support renders the old
HLE DSP support obsolete. Ergo, I have removed the 166KB of HLE source
code, and replaced it with the uPD77C25 core, which comprises a mere
20KB of source code. As this LLE module supports save states, this also
means that for the first time, DSP-3 and DSP-4 games have save state
support.
On the other hand, this also means that to run any DSP game, you will
need the appropriate program ROM. As these are copyrighted, I cannot
distribute them nor tell you where to get them. All I can do is provide
you with the necessary filenames and hashes.
Changelog (since v072 release):
* added NEC uPD77C25 emulation core
* added low-level emulation of the DSP-1, DSP-1B, DSP-2, DSP-3, DSP-4
coprocessors
* removed high-level emulation of the DSP-n coprocessors
* added blargg's libco::ppc.c module, which is far more portable, even
running on the PS3
* added software filter support via binary plugins
* added debugger (currently Linux-only); but it is as yet unstable
* added pause shortcut
* updated mightymo's cheat code database
2010-12-26 12:24:34 +00:00
|
|
|
#ifndef NALL_PRIORITYQUEUE_HPP
|
|
|
|
#define NALL_PRIORITYQUEUE_HPP
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include <nall/function.hpp>
|
|
|
|
#include <nall/serializer.hpp>
|
|
|
|
#include <nall/utility.hpp>
|
|
|
|
|
|
|
|
namespace nall {
|
|
|
|
template<typename type_t> void priority_queue_nocallback(type_t) {}
|
|
|
|
|
|
|
|
//priority queue implementation using binary min-heap array;
|
|
|
|
//does not require normalize() function.
|
|
|
|
//O(1) find (tick)
|
2012-04-24 13:13:42 +00:00
|
|
|
//O(log n) append (enqueue)
|
Update to v073 release.
byuu says:
This release marks a major step forward, offering full low-level
emulation of all four DSP coprocessors based on the NEC uPD77C25
processor core. Many people were responsible for this milestone: Dr.
Decapitator for the actual decapping and extraction; Lord Nightmare for
the cartridges and some special analysis tools; myself, Jonas Quinn and
Cydrak for the uPD77C25 emulation; and all of the donors who raised the
necessary $1,000 for the necessary hardware and equipment needed to pull
this all off. To say thanks to the donors, I am releasing the uPD77C25
emulation core to the public domain, so that everyone can benefit from
it.
All four DSP emulations will be improved by this by way of having
realistic timing; the DSP-4 will benefit further as the high-level
emulation was incomplete and somewhat buggy; and the DSP-3 will benefit
the most as the high-levle emulation there was not complete enough to be
playable. As a result, most notably, this means bsnes v073 is the first
emulator to fully be able to play SD Gundam GX (J)!
As bsnes' primary goal is accuracy, the LLE DSP support renders the old
HLE DSP support obsolete. Ergo, I have removed the 166KB of HLE source
code, and replaced it with the uPD77C25 core, which comprises a mere
20KB of source code. As this LLE module supports save states, this also
means that for the first time, DSP-3 and DSP-4 games have save state
support.
On the other hand, this also means that to run any DSP game, you will
need the appropriate program ROM. As these are copyrighted, I cannot
distribute them nor tell you where to get them. All I can do is provide
you with the necessary filenames and hashes.
Changelog (since v072 release):
* added NEC uPD77C25 emulation core
* added low-level emulation of the DSP-1, DSP-1B, DSP-2, DSP-3, DSP-4
coprocessors
* removed high-level emulation of the DSP-n coprocessors
* added blargg's libco::ppc.c module, which is far more portable, even
running on the PS3
* added software filter support via binary plugins
* added debugger (currently Linux-only); but it is as yet unstable
* added pause shortcut
* updated mightymo's cheat code database
2010-12-26 12:24:34 +00:00
|
|
|
//O(log n) remove (dequeue)
|
|
|
|
template<typename type_t> class priority_queue {
|
|
|
|
public:
|
|
|
|
inline void tick(unsigned ticks) {
|
|
|
|
basecounter += ticks;
|
|
|
|
while(heapsize && gte(basecounter, heap[0].counter)) callback(dequeue());
|
|
|
|
}
|
|
|
|
|
|
|
|
//counter is relative to current time (eg enqueue(64, ...) fires in 64 ticks);
|
|
|
|
//counter cannot exceed std::numeric_limits<unsigned>::max() >> 1.
|
|
|
|
void enqueue(unsigned counter, type_t event) {
|
|
|
|
unsigned child = heapsize++;
|
|
|
|
counter += basecounter;
|
|
|
|
|
|
|
|
while(child) {
|
|
|
|
unsigned parent = (child - 1) >> 1;
|
|
|
|
if(gte(counter, heap[parent].counter)) break;
|
|
|
|
|
|
|
|
heap[child].counter = heap[parent].counter;
|
|
|
|
heap[child].event = heap[parent].event;
|
|
|
|
child = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
heap[child].counter = counter;
|
|
|
|
heap[child].event = event;
|
|
|
|
}
|
|
|
|
|
|
|
|
type_t dequeue() {
|
|
|
|
type_t event(heap[0].event);
|
|
|
|
unsigned parent = 0;
|
|
|
|
unsigned counter = heap[--heapsize].counter;
|
|
|
|
|
|
|
|
while(true) {
|
|
|
|
unsigned child = (parent << 1) + 1;
|
|
|
|
if(child >= heapsize) break;
|
|
|
|
if(child + 1 < heapsize && gte(heap[child].counter, heap[child + 1].counter)) child++;
|
|
|
|
if(gte(heap[child].counter, counter)) break;
|
|
|
|
|
|
|
|
heap[parent].counter = heap[child].counter;
|
|
|
|
heap[parent].event = heap[child].event;
|
|
|
|
parent = child;
|
|
|
|
}
|
|
|
|
|
|
|
|
heap[parent].counter = counter;
|
|
|
|
heap[parent].event = heap[heapsize].event;
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset() {
|
|
|
|
basecounter = 0;
|
|
|
|
heapsize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(serializer &s) {
|
|
|
|
s.integer(basecounter);
|
|
|
|
s.integer(heapsize);
|
|
|
|
for(unsigned n = 0; n < heapcapacity; n++) {
|
|
|
|
s.integer(heap[n].counter);
|
|
|
|
s.integer(heap[n].event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
priority_queue(unsigned size, function<void (type_t)> callback_ = &priority_queue_nocallback<type_t>)
|
|
|
|
: callback(callback_) {
|
|
|
|
heap = new heap_t[size];
|
|
|
|
heapcapacity = size;
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
~priority_queue() {
|
|
|
|
delete[] heap;
|
|
|
|
}
|
|
|
|
|
|
|
|
priority_queue& operator=(const priority_queue&) = delete;
|
|
|
|
priority_queue(const priority_queue&) = delete;
|
|
|
|
|
|
|
|
private:
|
|
|
|
function<void (type_t)> callback;
|
|
|
|
unsigned basecounter;
|
|
|
|
unsigned heapsize;
|
|
|
|
unsigned heapcapacity;
|
|
|
|
struct heap_t {
|
|
|
|
unsigned counter;
|
|
|
|
type_t event;
|
|
|
|
} *heap;
|
|
|
|
|
|
|
|
//return true if x is greater than or equal to y
|
|
|
|
inline bool gte(unsigned x, unsigned y) {
|
|
|
|
return x - y < (std::numeric_limits<unsigned>::max() >> 1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|