forked from CutePoisonX/PoisonConvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVectorSourceManager.cpp
executable file
·207 lines (184 loc) · 6.41 KB
/
VectorSourceManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
//
// Copyright 2015 CutePoisonX ([email protected])
//
// This file is part of PoisonConvert.
//
// PoisonConvert 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.
//
// PoisonConvert 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 PoisonConvert. If not, see <http://www.gnu.org/licenses/>.
//
#include "VectorSourceManager.h"
VectorSourceManager::VectorSourceManager()
: VectorManager()
{
}
VectorSourceManager::VectorSourceManager(const VectorSourceManager& orig)
{
}
VectorSourceManager::~VectorSourceManager()
{
}
int VectorSourceManager::saveToVector(string& param1, string& param2, string& param3,
string& param4, string& param5,
unsigned int priority, unsigned int identifier)
{
vector<StreamPreference*>& tmp = getVector(identifier);
priority--;
vector<StreamPreference*>::iterator it = getSourceIterator(priority,
tmp);
tmp.insert(it, new StreamPreference(param1, param2, param3, param4, param5));
}
vector<StreamPreference*>& VectorSourceManager::getVector(unsigned int identifier)
{
switch (identifier)
{
case SRCVIDEO:
return source_video_vect_;
case SRCAUDIO:
return source_audio_vect_;
case SRCSUB:
return source_sub_vect_;
case TARVIDEO:
return target_video_vect_;
case TARAUDIO:
return target_audio_vect_;
case TARSUB:
return target_sub_vect_;
}
}
int VectorSourceManager::deleteFromVector(unsigned int priority,
unsigned int identifier)
{
vector<StreamPreference*>& tmp = getVector(identifier);
priority--;
vector<StreamPreference*>::iterator it = getSourceIterator(priority,
tmp);
delete tmp.at(priority);
tmp.erase(it);
}
int VectorSourceManager::editPreference(unsigned int priority, unsigned int identifier,
unsigned int param_nr, string& new_param)
{
priority--;
switch (param_nr)
{
case 1:
getVector(identifier).at(priority)->SetParam1(new_param);
break;
case 2:
getVector(identifier).at(priority)->SetParam2(new_param);
break;
case 3:
getVector(identifier).at(priority)->SetParam3(new_param);
break;
case 4:
getVector(identifier).at(priority)->SetParam4(new_param);
break;
case 5:
getVector(identifier).at(priority)->SetParam5(new_param);
break;
}
}
int VectorSourceManager::moveElement(unsigned int priority,
unsigned int new_priority,
unsigned int identifier)
{
priority--;
new_priority--;
vector<StreamPreference*>& tmp_vec = getVector(identifier);
StreamPreference* tmp_point = tmp_vec.at(priority);
vector<StreamPreference*>::iterator it_old = getSourceIterator(priority,
tmp_vec);
tmp_vec.erase(it_old);
vector<StreamPreference*>::iterator it_new = getSourceIterator(new_priority,
tmp_vec);
tmp_vec.insert(it_new, tmp_point);
}
int VectorSourceManager::linkNewTarget(unsigned int target_priority,
unsigned int identifier,
unsigned int priority)
{
priority--;
target_priority--;
getVector(identifier).at(priority)->saveTarget(target_priority);
}
int VectorSourceManager::deleteAllTarget(unsigned int priority,
unsigned int identifier,
unsigned int target_id)
{
priority--;
target_id--;
return getVector(identifier).at(priority)->deleteAllTargets(target_id);
}
int VectorSourceManager::editTarget(unsigned int priority,
unsigned int identifier,
unsigned int new_target,
unsigned int src_tar_vec_pos)
{
priority--;
src_tar_vec_pos--;
new_target--;
getVector(identifier).at(priority)->editTarget(new_target, src_tar_vec_pos);
}
unsigned int VectorSourceManager::getTargetIDfromSource(unsigned int priority,
unsigned int identifier,
unsigned int item)
{
priority--;
item--;
return getVector(identifier).at(priority)->GetTargetID(item) + 1;
}
unsigned int VectorSourceManager::getTargetVectorLenFromSrc(unsigned int identifier,
unsigned int priority)
{
priority--;
return getVector(identifier).at(priority)->GetTargetVecLen();
}
void VectorSourceManager::clearAllInstances()
{
//targets audio
for(unsigned int index = 0; index < target_audio_vect_.size(); index++)
{
delete target_audio_vect_.at(index);
}
target_audio_vect_.clear();
//targets video
for(unsigned int index = 0; index < target_video_vect_.size(); index++)
{
delete target_video_vect_.at(index);
}
target_video_vect_.clear();
//targets subtitles
for(unsigned int index = 0; index < target_sub_vect_.size(); index++)
{
delete target_sub_vect_.at(index);
}
target_sub_vect_.clear();
//source video
for(unsigned int index = 0; index < source_video_vect_.size(); index++)
{
delete source_video_vect_.at(index);
}
source_video_vect_.clear();
//source audio
for(unsigned int index = 0; index < source_audio_vect_.size(); index++)
{
delete source_audio_vect_.at(index);
}
source_audio_vect_.clear();
//source subtitles
for(unsigned int index = 0; index < source_sub_vect_.size(); index++)
{
delete source_sub_vect_.at(index);
}
source_sub_vect_.clear();
}