2008-03-07 05:47:52 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
2008-05-22 17:32:26 +02:00
|
|
|
|
2008-03-07 05:47:52 +01:00
|
|
|
#pragma once
|
|
|
|
|
2008-04-19 06:16:21 +02:00
|
|
|
#include "Sequence.H"
|
2008-03-07 05:47:52 +01:00
|
|
|
#include "Control_Point.H"
|
2008-05-22 09:05:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
#include "Engine/Port.H"
|
2008-03-07 05:47:52 +01:00
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
class Control_Sequence : public Sequence
|
2008-03-07 05:47:52 +01:00
|
|
|
{
|
2008-05-08 03:05:49 +02:00
|
|
|
/* not permitted */
|
|
|
|
Control_Sequence ( const Control_Sequence &rhs );
|
|
|
|
Control_Sequence & operator = ( const Control_Sequence &rhs );
|
|
|
|
|
2008-04-29 03:06:45 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
enum curve_type_e { Linear, Quadratic };
|
|
|
|
|
|
|
|
private:
|
2008-03-07 05:47:52 +01:00
|
|
|
|
2008-04-28 18:19:25 +02:00
|
|
|
Port *_output;
|
|
|
|
|
2008-04-25 05:29:28 +02:00
|
|
|
bool _highlighted;
|
|
|
|
|
2008-04-29 03:06:45 +02:00
|
|
|
curve_type_e _type;
|
|
|
|
|
2008-04-21 05:05:25 +02:00
|
|
|
void init ( void );
|
|
|
|
|
2008-06-19 06:14:14 +02:00
|
|
|
void draw_curve ( bool flip, bool filled );
|
2008-04-28 16:20:17 +02:00
|
|
|
|
2008-04-20 23:46:47 +02:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
2008-04-25 08:34:08 +02:00
|
|
|
virtual void get ( Log_Entry &e ) const;
|
2008-04-20 23:46:47 +02:00
|
|
|
void set ( Log_Entry &e );
|
|
|
|
|
2008-05-05 07:29:39 +02:00
|
|
|
Control_Sequence ( ) : Sequence( 0 )
|
2008-04-20 04:15:54 +02:00
|
|
|
{
|
2008-04-21 05:05:25 +02:00
|
|
|
init();
|
2008-04-20 04:15:54 +02:00
|
|
|
}
|
|
|
|
|
2008-04-23 17:41:35 +02:00
|
|
|
|
2008-06-19 06:14:14 +02:00
|
|
|
void draw ( void );
|
|
|
|
int handle ( int m );
|
2008-04-23 17:41:35 +02:00
|
|
|
|
2008-03-07 05:47:52 +01:00
|
|
|
public:
|
|
|
|
|
2008-04-22 02:45:17 +02:00
|
|
|
static bool draw_with_gradient;
|
|
|
|
static bool draw_with_polygon;
|
|
|
|
static bool draw_with_grid;
|
2008-04-22 01:45:54 +02:00
|
|
|
|
2008-04-20 04:15:54 +02:00
|
|
|
LOG_CREATE_FUNC( Control_Sequence );
|
2008-03-09 01:38:34 +01:00
|
|
|
|
2008-04-21 05:05:25 +02:00
|
|
|
Control_Sequence ( Track * );
|
|
|
|
~Control_Sequence ( );
|
2008-03-07 05:47:52 +01:00
|
|
|
|
2008-05-02 13:42:50 +02:00
|
|
|
Fl_Cursor cursor ( void ) const { return FL_CURSOR_CROSS; }
|
|
|
|
|
2008-04-28 16:20:17 +02:00
|
|
|
/* Engine */
|
2008-04-28 18:19:25 +02:00
|
|
|
void output ( Port *p ) { _output = p; }
|
2008-04-28 16:20:17 +02:00
|
|
|
nframes_t play ( sample_t *buf, nframes_t frame, nframes_t nframes );
|
|
|
|
nframes_t process ( nframes_t nframes );
|
|
|
|
|
2008-03-07 05:47:52 +01:00
|
|
|
};
|