2016-01-07 08:14:33 +00:00
|
|
|
#pragma once
|
2010-08-09 13:28:56 +00:00
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
#include <nall/function.hpp>
|
|
|
|
#include <nall/serializer.hpp>
|
|
|
|
#include <nall/utility.hpp>
|
|
|
|
|
|
|
|
namespace nall {
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
template<typename type_t> auto priority_queue_nocallback(type_t) -> void {}
|
2013-05-02 11:25:45 +00:00
|
|
|
|
|
|
|
//priority queue implementation using binary min-heap array;
|
|
|
|
//does not require normalize() function.
|
|
|
|
//O(1) find (tick)
|
|
|
|
//O(log n) append (enqueue)
|
|
|
|
//O(log n) remove (dequeue)
|
|
|
|
template<typename type_t> struct priority_queue {
|
2015-07-14 09:32:43 +00:00
|
|
|
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(const priority_queue&) = delete;
|
|
|
|
auto operator=(const priority_queue&) -> priority_queue& = delete;
|
|
|
|
|
|
|
|
inline auto tick(unsigned ticks) -> void {
|
2013-05-02 11:25:45 +00:00
|
|
|
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.
|
2015-07-14 09:32:43 +00:00
|
|
|
auto enqueue(unsigned counter, type_t event) -> void {
|
2013-05-02 11:25:45 +00:00
|
|
|
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;
|
2010-08-09 13:28:56 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
heap[child].counter = counter;
|
|
|
|
heap[child].event = event;
|
|
|
|
}
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
auto dequeue() -> type_t {
|
2013-05-02 11:25:45 +00:00
|
|
|
type_t event(heap[0].event);
|
|
|
|
unsigned parent = 0;
|
|
|
|
unsigned counter = heap[--heapsize].counter;
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
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;
|
2010-08-09 13:28:56 +00:00
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
heap[parent].counter = heap[child].counter;
|
|
|
|
heap[parent].event = heap[child].event;
|
|
|
|
parent = child;
|
2010-08-09 13:28:56 +00:00
|
|
|
}
|
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
heap[parent].counter = counter;
|
|
|
|
heap[parent].event = heap[heapsize].event;
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
auto reset() -> void {
|
2013-05-02 11:25:45 +00:00
|
|
|
basecounter = 0;
|
|
|
|
heapsize = 0;
|
|
|
|
}
|
|
|
|
|
2015-07-14 09:32:43 +00:00
|
|
|
auto serialize(serializer& s) -> void {
|
2013-05-02 11:25:45 +00:00
|
|
|
s.integer(basecounter);
|
|
|
|
s.integer(heapsize);
|
|
|
|
for(unsigned n = 0; n < heapcapacity; n++) {
|
|
|
|
s.integer(heap[n].counter);
|
|
|
|
s.integer(heap[n].event);
|
2010-08-09 13:28:56 +00:00
|
|
|
}
|
2013-05-02 11:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2015-07-14 09:32:43 +00:00
|
|
|
inline auto gte(unsigned x, unsigned y) -> bool {
|
2013-05-02 11:25:45 +00:00
|
|
|
return x - y < (std::numeric_limits<unsigned>::max() >> 1);
|
|
|
|
}
|
|
|
|
};
|
2010-08-09 13:28:56 +00:00
|
|
|
|
|
|
|
}
|