aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.cpp
blob: c2ade58f0596bb06575a0800de79adee3073150b (plain) (blame)
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/*
 * UltraStar Deluxe - Karaoke Game
 *
 * UltraStar Deluxe is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * 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., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#include "song.hpp"
#include "lyric_word.hpp"
#include "utils/locale_independent_float.hpp"

namespace usdx
{
	log4cpp::Category&  Song::log =
		log4cpp::Category::getInstance("usdx.base.Song");

	const boost::filesystem::wpath& Song::get_filename(void) const
	{
		return filename;
	}

	Song::Song(const boost::filesystem::wpath& filename,
               const std::map<std::string, std::string>& header) :
		filename(filename), custom_header_tags(header)
	{
		std::map<std::string, std::string>::iterator it;

		title = get_header_tag("TITLE", true);
		artist = get_header_tag("ARTIST", true);
		mp3 = get_header_tag("MP3", true);

		bpm.push_back(new BPM(get_header_tag_float("BPM", true)));

		gap = get_header_tag_float("GAP");
		cover_file = get_header_tag("COVER");
		background = get_header_tag("BACKGROUND");

		video = get_header_tag("VIDEO");
		video_gap = get_header_tag_float("VIDEOGAP");

		genre = get_header_tag("GENRE");
		edition = get_header_tag("EDITION");
		creator = get_header_tag("CREATOR");
		language = get_header_tag("LANGUAGE");

		year = get_header_tag_int("YEAR");

		start = get_header_tag_float("START");
		stop = get_header_tag_int("END");

		resolution = get_header_tag_int("RESOLUTION");
		notes_gap = get_header_tag_int("NOTESGAP");

		relative = get_header_tag_bool("RELATIVE");

		// TODO
	        // EncFile := DecodeFilename(Value);
		// if (self.Path.Append(EncFile).IsFile) then
                //   self.Video := EncFile
		// else
		//  Log.LogError('Can''t find video file in song: ' +
	        // Fulfilling);

		// TODO
		// encoding = get_header_tag("ENCODING");
	}

	Song::~Song(void)
	{
		for (std::list<BPM*>::iterator it = bpm.begin(); it != bpm.end(); it++) {
			delete *it;
		}

		bpm.clear();

		for (std::list<LyricLine*>::iterator it = lyrics.begin(); it != lyrics.end(); it++) {
			delete *it;
		}
		lyrics.clear();
	}

    std::string Song::get_header_tag(const std::string& tag, const bool required)
	{
       std::map<std::string, std::string>::iterator it;
		std::string result = "";

		if ((it = custom_header_tags.find(tag)) != custom_header_tags.end()) {
			result = it->second;
			custom_header_tags.erase(it);
		}
		else if (required) {
            log << log4cpp::Priority::ERROR << "Incomplete Song! Missing '" <<
                tag << "' Tag in: '" << get_filename() << "'";
            throw MissingTagException(tag, "Incomplete Song! Missing Tag.");
		}

		return result;
	}

	float Song::get_header_tag_float(const std::string& tag, const bool required)
	{
		std::map<std::string, std::string>::iterator it;
		float result;

		if ((it = custom_header_tags.find(tag)) != custom_header_tags.end()) {
			result = LocaleIndependentFloat(it->second).get_value();
			custom_header_tags.erase(it);
		}
		else if (required) {
			log << log4cpp::Priority::ERROR << "Incomplete Song! Missing '" <<
                tag << "' Tag in: '" << get_filename() << "'";
			throw MissingTagException(tag, "Incomplete Song! Missing Tag.");
		}

		return result;
	}

	int Song::get_header_tag_int(const std::string& tag, const bool required)
	{
		std::map<std::string, std::string>::iterator it;
		int result;

		if ((it = custom_header_tags.find(tag)) != custom_header_tags.end()) {
			std::istringstream stream(it->second);
			custom_header_tags.erase(it);
			stream >> result;
		}
		else if (required) {
			log << log4cpp::Priority::ERROR << "Incomplete Song! Missing '" <<
                tag << "' Tag in: '" << get_filename() << "'";
			throw MissingTagException(tag, "Incomplete Song! Missing Tag.");
		}

		return result;
	}

	bool Song::get_header_tag_bool(const std::string& tag, const bool required)
	{
		std::map<std::string, std::string>::iterator it;
		bool result;

		if ((it = custom_header_tags.find(tag)) != custom_header_tags.end()) {
			// accept all like (YES, JA, TRUE, 1)
			result = (it->second[0] == 'j' || it->second[0] == 'J' ||
				  it->second[0] == 'y' || it->second[0] == 'Y' ||
				  it->second[0] == 't' || it->second[0] == 'T' ||
				  it->second[0] == '1');
			custom_header_tags.erase(it);
		}
		else if (required) {
			log << log4cpp::Priority::ERROR << "Incomplete Song! Missing '" <<
                tag << "' Tag in: '" << get_filename() << "'";
			throw MissingTagException(tag, "Incomplete Song! Missing Tag.");
		}

		return result;
	}

	LyricLine* Song::get_last_lyric_line(void)
	{
		if (lyrics.size() > 0) {
			return lyrics.back();
		}

		return create_new_lyric_line(0);
	}

	LyricLine* Song::create_new_lyric_line(int start)
	{
		LyricLine* line = new LyricLine(start);
		lyrics.push_back(line);
		return line;
	}

	const std::string& Song::get_title(void) const
	{
		return title;
	}

	const std::string& Song::get_artist(void) const
	{
		return artist;
	}

	const std::string& Song::get_mp3(void) const
	{
		return mp3;
	}

	const float Song::get_bpm(int beat) const
	{
		float last_bpm;

		for (std::list<BPM*>::const_iterator it = bpm.begin(); it != bpm.end(); it++) {
			if ((*it)->get_beat() > beat) {
				break;
			}

			last_bpm = (*it)->get_bpm();
		}

		return last_bpm;
	}

	const float Song::get_gap(void) const
	{
		return gap;
	}

	const std::string& Song::get_cover_file(void) const
	{
		return cover_file;
	}

	const std::string& Song::get_background(void) const
	{
		return background;
	}

	const std::string& Song::get_video(void) const
	{
		return video;
	}

	const float Song::get_video_gap(void) const
	{
		return video_gap;
	}

	const std::string& Song::get_genre(void) const
	{
		return genre;
	}

	const std::string& Song::get_edition(void) const
	{
		return edition;
	}

	const std::string& Song::get_creator(void) const
	{
		return creator;
	}

	const std::string& Song::get_language(void) const
	{
		return language;
	}

	const int Song::get_year(void) const
	{
		return year;
	}

	const float Song::get_start(void) const
	{
		return start;
	}

	const int Song::get_stop(void) const
	{
		return stop;
	}

	const int Song::get_resolution(void) const
	{
		return resolution;
	}

	const int Song::get_notes_gap(void) const
	{
		return notes_gap;
	}

	const bool Song::get_relative(void) const
	{
		return relative;
	}

	// TODO:
	// const std::string& Song::get_encoding(void) const
	// {
	// 	return encoding;
	// }

	int Song::get_relative_beat(void)
	{
		if (relative)
			return get_last_lyric_line()->get_start();

		return 0;
	}

	void Song::new_bpm(const int beat, const float new_bpm)
	{
		bpm.push_back(new BPM(beat + get_relative_beat(), new_bpm));
	}

	void Song::new_line(const int line_out, const int line_in)
	{
		get_last_lyric_line()->set_end(line_out + get_relative_beat());
		create_new_lyric_line(line_in + get_relative_beat());
	}

	void Song::new_note(const char type, const int beat, const int length, const int height, const std::string& lyric)
	{
		get_last_lyric_line()->add_word(new LyricWord(type, beat + get_relative_beat(), length, height, lyric));
	}

}