6 * Copyright (C) 2015 Adam Williams <broadcast at earthling dot net>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 // functions for handling proxies
26 #include "arraylist.h"
27 #include "audiodevice.inc"
32 #include "formattools.h"
33 #include "loadbalance.h"
35 #include "mwindow.inc"
37 #include "renderengine.inc"
41 class ProxyMenuItem : public BC_MenuItem
44 ProxyMenuItem(MWindow *mwindow);
48 void create_objects();
54 class FromProxyMenuItem : public BC_MenuItem
57 FromProxyMenuItem(MWindow *mwindow);
67 ProxyRender(MWindow *mwindow, Asset *format_asset, int asset_scale);
69 void to_proxy_path(char *new_path, Indexable *indexable, int scale);
70 static int from_proxy_path(char *new_path, Asset *asset, int scale);
72 ArrayList<Indexable *> orig_idxbls; // originals which match the proxy assets
73 ArrayList<Indexable *> orig_proxies; // proxy assets
74 Asset *add_original(Indexable *idxbl, int new_scale);
75 ArrayList<Indexable *> needed_idxbls; // originals which match the needed_assets
76 ArrayList<Asset *> needed_proxies; // assets which must be created
77 void add_needed(Indexable *idxbl, Asset *proxy);
79 int create_needed_proxies(int new_scale);
80 // increment the frame count by 1
81 void update_progress();
82 // if user canceled progress bar
87 MainProgressBar *progress;
94 class ProxyDialog : public BC_DialogThread
97 ProxyDialog(MWindow *mwindow);
100 void handle_close_event(int result);
103 // calculate possible sizes based on the original size
104 void calculate_sizes();
105 void scale_to_text(char *string, int scale);
110 ProxyRender *proxy_render;
112 int orig_scale, new_scale;
113 int use_scaler, auto_scale;
117 char *size_text[MAX_SIZES];
118 int size_factors[MAX_SIZES];
122 class ProxyUseScaler : public BC_CheckBox
125 ProxyUseScaler(ProxyWindow *pwindow, int x, int y);
129 ProxyWindow *pwindow;
132 class ProxyAutoScale : public BC_CheckBox
135 ProxyAutoScale(ProxyWindow *pwindow, int x, int y);
139 ProxyWindow *pwindow;
142 class ProxyBeepOnDone : public BC_CheckBox
145 ProxyBeepOnDone(ProxyWindow *pwindow, int x, int y);
148 ProxyWindow *pwindow;
151 class ProxyBeepVolume : public BC_FSlider
154 ProxyBeepVolume(ProxyWindow *pwindow, int x, int y);
157 ProxyWindow *pwindow;
160 class ProxyFormatTools : public FormatTools
163 ProxyFormatTools(MWindow *mwindow, ProxyWindow *window, Asset *asset);
165 void update_format();
166 ProxyWindow *pwindow;
169 class ProxyMenu : public BC_PopupMenu
172 ProxyMenu(MWindow *mwindow, ProxyWindow *pwindow,
173 int x, int y, int w, const char *text);
177 ProxyWindow *pwindow;
181 class ProxyTumbler : public BC_Tumbler
184 ProxyTumbler(MWindow *mwindow, ProxyWindow *pwindow, int x, int y);
186 int handle_up_event();
187 int handle_down_event();
189 ProxyWindow *pwindow;
194 class ProxyWindow : public BC_Window
197 ProxyWindow(MWindow *mwindow, ProxyDialog *dialog,
201 void create_objects();
206 BC_TitleBar *title_bar1, *title_bar2;
207 FormatTools *format_tools;
208 BC_Title *new_dimensions;
209 BC_Title *active_scale;
210 BC_Title *active_state;
211 ProxyMenu *scale_factor;
212 ProxyUseScaler *use_scaler;
213 ProxyAutoScale *auto_scale;
214 ProxyBeepOnDone *beep_on_done;
215 ProxyBeepVolume *beep_volume;
220 class ProxyPackage : public LoadPackage
224 Indexable *orig_idxbl;
228 class ProxyClient : public LoadClient
231 ProxyClient(MWindow *mwindow, ProxyRender *proxy_render, ProxyFarm *server);
233 void process_package(LoadPackage *package);
236 ProxyRender *proxy_render;
237 RenderEngine *render_engine;
238 CICache *video_cache;
243 class ProxyFarm : public LoadServer
246 ProxyFarm(MWindow *mwindow, ProxyRender *proxy_render,
247 ArrayList<Indexable*> *orig_idxbls, ArrayList<Asset*> *proxy_assets);
249 void init_packages();
250 LoadClient* new_client();
251 LoadPackage* new_package();
254 ProxyRender *proxy_render;
255 ArrayList<Indexable*> *orig_idxbls;
256 ArrayList<Asset*> *proxy_assets;