/* Calf Box, an open source musical instrument. Copyright (C) 2010-2011 Krzysztof Foltman 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 3 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, see . */ #ifndef CBOX_MASTER_H #define CBOX_MASTER_H #include #include "cmd.h" extern uint64_t PPQN; struct cbox_song; struct cbox_rt; #define GET_RT_FROM_cbox_master(ptr) ((ptr)->engine->rt) enum cbox_master_transport_state { CMTS_STOP, CMTS_ROLLING, CMTS_STOPPING, }; struct cbox_master { int srate; float tempo, new_tempo; int timesig_num; int timesig_denom; // must be 4 for now uint64_t ppqn_factor; enum cbox_master_transport_state state; struct cbox_engine *engine; struct cbox_song *song; struct cbox_song_playback *spb; struct cbox_command_target cmd_target; }; struct cbox_bbt { uint32_t bar; uint32_t beat; uint32_t tick; uint32_t offset_samples; }; struct cbox_master_track_item; static inline void cbox_bbt_add(struct cbox_bbt *accum, uint32_t ticks, uint32_t ppqn_factor, uint32_t timesig_num, uint32_t timesig_denom) { uint32_t ticks_per_beat = ppqn_factor * 4 / timesig_denom; uint32_t beats_per_bar = timesig_num; accum->tick += ticks % ticks_per_beat; if (accum->tick >= ticks_per_beat) { accum->tick -= ticks_per_beat; accum->beat++; } uint32_t inc_beats = ticks / ticks_per_beat; accum->beat += inc_beats % beats_per_bar; if (accum->beat >= beats_per_bar) { accum->beat -= beats_per_bar; accum->bar++; } accum->bar += inc_beats / beats_per_bar; } extern struct cbox_master *cbox_master_new(struct cbox_engine *engine); extern void cbox_master_set_sample_rate(struct cbox_master *master, int srate); extern void cbox_master_set_tempo(struct cbox_master *master, float tempo); extern void cbox_master_set_timesig(struct cbox_master *master, int beats, int unit); extern void cbox_master_ppqn_to_bbt(const struct cbox_master *master, struct cbox_bbt *bbt, int time_ppqn, struct cbox_master_track_item *mti); //extern uint32_t cbox_master_song_pos_from_bbt(struct cbox_master *master, const struct cbox_bbt *bbt); extern void cbox_master_play(struct cbox_master *master); extern void cbox_master_stop(struct cbox_master *master); extern void cbox_master_panic(struct cbox_master *master); extern void cbox_master_seek_ppqn(struct cbox_master *master, uint32_t pos_ppqn); extern void cbox_master_seek_samples(struct cbox_master *master, uint32_t pos_samples); extern void cbox_master_destroy(struct cbox_master *master); uint32_t cbox_master_ppqn_to_samples(struct cbox_master *master, uint32_t time_ppqn); uint32_t cbox_master_samples_to_ppqn(struct cbox_master *master, uint32_t time_samples); #endif