mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-12 13:21:51 +00:00
e6ce41bdde
## 1.5.0 2020-09-28 * Drum note length expanding is now supported in real-time mode (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Channels manager has been improved (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Nuked OPL3 1.8 emulator got some optimizations ported from 1.7 where they are was applied previously (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Reworked rhythm-mode percussions system, WOPL banks with rhythm-mode percussions * Added Public Domain Opal OPL3 emulator made by Reality (a team who originally made the Reality Adlib Tracker) (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Added LGPL licensed JavaOPL3 emulator made by Robson Cozendey in Java and later rewritten into C++ for GZDoom (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!) * Fully rewritten an embedded bank database format, embedded banks now supports a wider set (more than 127:127 instruments in one bank) * Improved accuracy of the DMX volume model, include the buggy AM interpretation * Improved accuracy of Apogee volume model, include the bug of AM instruments * Improved accuracy of the Win9X volume model * Removed C++ extras. C++-bounded instruments tester is useless since a real-time MIDI API can completely replace it * Added AIL volume model * Added Generic FM variant of Win9X volume model * Fixed an incorrect work of CC-121 (See https://github.com/Wohlstand/libADLMIDI/issues/227 for details) * Added HMI volume model (Thanks to [Alexey Khokholov](https://github.com/nukeykt) for help with research!) * Added frequency models, assigned to every volume model: AIL, HMI, DMX, Apogee, 9X, and the Generic formula # Conflicts: # libraries/adlmidi/adldata.cpp # libraries/adlmidi/adldata.hh # libraries/adlmidi/adlmidi.hpp
133 lines
3.1 KiB
C++
133 lines
3.1 KiB
C++
// Copyright Jean Pierre Cimalando 2018.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef PL_LIST_HPP
|
|
#define PL_LIST_HPP
|
|
|
|
#include <iterator>
|
|
#include <cstddef>
|
|
|
|
/*
|
|
pl_cell: the linked list cell
|
|
*/
|
|
template <class T>
|
|
struct pl_cell;
|
|
|
|
template <class T>
|
|
struct pl_basic_cell
|
|
{
|
|
pl_cell<T> *prev, *next;
|
|
};
|
|
|
|
template <class T>
|
|
struct pl_cell : pl_basic_cell<T>
|
|
{
|
|
T value;
|
|
};
|
|
|
|
/*
|
|
pl_iterator: the linked list iterator
|
|
*/
|
|
template <class Cell>
|
|
class pl_iterator
|
|
{
|
|
public:
|
|
typedef std::bidirectional_iterator_tag iterator_category;
|
|
typedef Cell value_type;
|
|
typedef Cell &reference;
|
|
typedef Cell *pointer;
|
|
typedef std::ptrdiff_t difference_type;
|
|
|
|
pl_iterator(Cell *cell = NULL);
|
|
bool is_end() const;
|
|
Cell &operator*() const;
|
|
Cell *operator->() const;
|
|
bool operator==(const pl_iterator &i) const;
|
|
bool operator!=(const pl_iterator &i) const;
|
|
pl_iterator &operator++();
|
|
pl_iterator operator++(int);
|
|
pl_iterator &operator--();
|
|
pl_iterator operator--(int);
|
|
|
|
private:
|
|
Cell *cell_;
|
|
};
|
|
|
|
/*
|
|
pl_list: the preallocated linked list
|
|
*/
|
|
template <class T>
|
|
class pl_list
|
|
{
|
|
public:
|
|
typedef pl_cell<T> value_type;
|
|
typedef value_type *pointer;
|
|
typedef value_type &reference;
|
|
typedef const value_type *const_pointer;
|
|
typedef const value_type &const_reference;
|
|
typedef pl_iterator< pl_cell<T> > iterator;
|
|
typedef pl_iterator< const pl_cell<T> > const_iterator;
|
|
|
|
pl_list(std::size_t capacity = 0);
|
|
~pl_list();
|
|
|
|
struct external_storage_policy {};
|
|
pl_list(pl_cell<T> *cells, std::size_t ncells, external_storage_policy);
|
|
|
|
pl_list(const pl_list &other);
|
|
pl_list &operator=(const pl_list &other);
|
|
|
|
std::size_t size() const;
|
|
std::size_t capacity() const;
|
|
bool empty() const;
|
|
|
|
iterator begin();
|
|
iterator end();
|
|
const_iterator begin() const;
|
|
const_iterator end() const;
|
|
|
|
void clear();
|
|
|
|
pl_cell<T> &front();
|
|
const pl_cell<T> &front() const;
|
|
pl_cell<T> &back();
|
|
const pl_cell<T> &back() const;
|
|
|
|
iterator insert(iterator pos, const T &x);
|
|
iterator erase(iterator pos);
|
|
void push_front(const T &x);
|
|
void push_back(const T &x);
|
|
void pop_front();
|
|
void pop_back();
|
|
|
|
iterator find(const T &x);
|
|
const_iterator find(const T &x) const;
|
|
template <class Pred> iterator find_if(const Pred &p);
|
|
template <class Pred> const_iterator find_if(const Pred &p) const;
|
|
|
|
private:
|
|
// number of cells in the list
|
|
std::size_t size_;
|
|
// number of cells allocated
|
|
std::size_t capacity_;
|
|
// array of cells allocated
|
|
pl_cell<T> *cells_;
|
|
// pointer to the head cell
|
|
pl_cell<T> *first_;
|
|
// pointer to the next free cell
|
|
pl_cell<T> *free_;
|
|
// value-less cell which terminates the linked list
|
|
pl_basic_cell<T> endcell_;
|
|
// whether cell storage is allocated
|
|
bool cells_allocd_;
|
|
|
|
void initialize(std::size_t capacity, pl_cell<T> *extcells = NULL);
|
|
pl_cell<T> *allocate(pl_cell<T> *pos);
|
|
void deallocate(pl_cell<T> *cell);
|
|
};
|
|
|
|
#include "pl_list.tcc"
|
|
|
|
#endif // PL_LIST_HPP
|