91609c3c3162e2558edfdd64aaf451597b540a3b
[goodguy/history.git] / cinelerra-5.1 / cinelerra / tracking.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "arender.h"
23 #include "condition.h"
24 #include "cplayback.h"
25 #include "cwindow.h"
26 #include "cwindowgui.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "levelwindow.h"
30 #include "levelwindowgui.h"
31 #include "localsession.h"
32 #include "mainclock.h"
33 #include "meterpanel.h"
34 #include "mwindow.h"
35 #include "mwindowgui.h"
36 #include "tracking.h"
37 #include "patchbay.h"
38 #include "playbackengine.h"
39 #include "renderengine.h"
40 #include "mainsession.h"
41 #include "trackcanvas.h"
42
43
44
45 // States
46 #define PLAYING 0
47 #define DONE 1
48
49
50
51 Tracking::Tracking(MWindow *mwindow)
52  : Thread(1, 0, 0)
53 {
54         this->mwindow = mwindow;
55         state = DONE;
56         startup_lock = new Condition(0, "Tracking::startup_lock");
57 }
58
59 Tracking::~Tracking()
60 {
61         if(state == PLAYING)
62         {
63 // Stop loop
64                 state = DONE;
65 // Not working in NPTL for some reason
66 //              Thread::cancel();
67         }
68         Thread::join();
69
70         delete startup_lock;
71 }
72
73 void Tracking::create_objects()
74 {
75 //      start();
76 }
77
78 int Tracking::start_playback(double new_position)
79 {
80         if(state != PLAYING)
81         {
82                 last_position = new_position;
83                 state = PLAYING;
84                 draw();
85                 Thread::start();
86                 startup_lock->lock("Tracking::start_playback");
87         }
88         return 0;
89 }
90
91 int Tracking::stop_playback()
92 {
93         if(state != DONE)
94         {
95 // Stop loop
96                 state = DONE;
97 // Not working in NPTL for some reason
98 //              Thread::cancel();
99                 Thread::join();
100
101 // Final position is updated continuously during playback
102 // Get final position
103                 double position = get_tracking_position();
104 // Update cursor
105                 update_tracker(position);
106
107                 stop_meters();
108         }
109         return 0;
110 }
111
112 PlaybackEngine* Tracking::get_playback_engine()
113 {
114         return mwindow->cwindow->playback_engine;
115 }
116
117 double Tracking::get_tracking_position()
118 {
119         return get_playback_engine()->get_tracking_position();
120 }
121
122 void Tracking::update_meters(int64_t position)
123 {
124         double output_levels[MAXCHANNELS];
125         int do_audio = get_playback_engine()->get_output_levels(output_levels, position);
126
127         if(do_audio)
128         {
129                 module_levels.remove_all();
130                 get_playback_engine()->get_module_levels(&module_levels, position);
131
132                 mwindow->cwindow->gui->lock_window("Tracking::update_meters 1");
133                 mwindow->cwindow->gui->meters->update(output_levels);
134                 mwindow->cwindow->gui->unlock_window();
135
136                 mwindow->lwindow->gui->lock_window("Tracking::update_meters 2");
137                 mwindow->lwindow->gui->panel->update(output_levels);
138                 mwindow->lwindow->gui->unlock_window();
139
140                 mwindow->gui->lock_window("Tracking::update_meters 3");
141                 mwindow->gui->update_meters(&module_levels);
142                 mwindow->gui->unlock_window();
143         }
144 }
145
146 void Tracking::stop_meters()
147 {
148         mwindow->cwindow->gui->lock_window("Tracking::stop_meters 1");
149         mwindow->cwindow->gui->meters->stop_meters();
150         mwindow->cwindow->gui->unlock_window();
151
152         mwindow->gui->lock_window("Tracking::stop_meters 2");
153         mwindow->gui->stop_meters();
154         mwindow->gui->unlock_window();
155
156         mwindow->lwindow->gui->lock_window("Tracking::stop_meters 3");
157         mwindow->lwindow->gui->panel->stop_meters();
158         mwindow->lwindow->gui->unlock_window();
159 }
160
161
162
163
164 void Tracking::update_tracker(double position)
165 {
166 }
167
168 void Tracking::draw()
169 {
170 //      gui->lock_window("Tracking::draw");
171 //      if(!visible)
172 //      {
173 //              pixel = get_pixel(last_position);
174 //      }
175 //
176 //      gui->canvas->set_color(GREEN);
177 //      gui->canvas->set_inverse();
178 //      gui->canvas->draw_line(pixel, 0, pixel, gui->canvas->get_h());
179 //      gui->canvas->set_opaque();
180 //      gui->canvas->flash(pixel, 0, pixel + 1, gui->canvas->get_h());
181 //      visible ^= 1;
182 //      gui->unlock_window();
183 }
184
185
186 void Tracking::run()
187 {
188         startup_lock->unlock();
189
190         double position;
191         while(state != DONE)
192         {
193                 Thread::enable_cancel();
194                 timer.delay(1000 / TRACKING_RATE);
195                 Thread::disable_cancel();
196
197                 if(state != DONE)
198                 {
199
200 // can be stopped during wait
201                         if(get_playback_engine()->tracking_active)
202                         {
203 // Get position of cursor
204                                 position = get_tracking_position();
205
206 // Update cursor
207                                 update_tracker(position);
208                         }
209                 }
210         }
211 }
212
213
214
215
216