furnace/src/engine/pattern.h

75 lines
2.1 KiB
C
Raw Normal View History

2022-02-15 03:12:20 +00:00
/**
* Furnace Tracker - multi-system chiptune tracker
* Copyright (C) 2021-2022 tildearrow and contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
2022-01-17 04:21:27 +00:00
#include "safeReader.h"
2022-08-16 08:19:16 +00:00
#include <vector>
2022-01-17 04:21:27 +00:00
struct DivPattern {
2022-02-19 07:52:53 +00:00
String name;
short data[256][32];
2022-03-16 03:05:55 +00:00
/**
* copy this pattern to another.
* @param dest the destination pattern.
*/
2022-02-19 07:52:53 +00:00
void copyOn(DivPattern* dest);
2021-12-09 06:44:40 +00:00
DivPattern();
};
struct DivChannelData {
unsigned char effectCols;
// data goes as follows: data[ROW][TYPE]
// TYPE is:
// 0: note
// 1: octave
// 2: instrument
// 3: volume
// 4-5+: effect/effect value
2022-03-16 03:05:55 +00:00
// do NOT access directly unless you know what you're doing!
DivPattern* data[256];
2022-03-16 03:05:55 +00:00
/**
* get a pattern from this channel, or the empty pattern if not initialized.
* @param index the pattern ID.
* @param create whether to initialize a new pattern if not init'ed. always use true if you're going to modify it!
* @return a DivPattern.
*/
2021-12-09 06:44:40 +00:00
DivPattern* getPattern(int index, bool create);
2022-03-16 03:05:55 +00:00
2022-08-16 08:19:16 +00:00
/**
* optimize pattern data.
* not thread-safe! use a mutex!
* @return a list of From -> To pairs
*/
std::vector<std::pair<int,int>> optimize();
/**
* re-arrange NULLs.
* not thread-safe! use a mutex!
* @return a list of From -> To pairs
*/
std::vector<std::pair<int,int>> rearrange();
2022-03-16 03:05:55 +00:00
/**
* destroy all patterns on this DivChannelData.
*/
2021-12-15 22:32:08 +00:00
void wipePatterns();
2021-12-09 06:44:40 +00:00
DivChannelData();
2021-05-11 20:26:38 +00:00
};