aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/song.cpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-01-18 03:29:22 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:45 +0100
commit824d7aed1a2a546c80fffc6c6e4e5299537c74d2 (patch)
tree7f938c00a628e28a6d3b82db100fa64e784bb858 /src/base/song.cpp
parent6866019fdec1c345d4f626861c640122a90e0ce8 (diff)
downloadusdx-824d7aed1a2a546c80fffc6c6e4e5299537c74d2.tar.gz
usdx-824d7aed1a2a546c80fffc6c6e4e5299537c74d2.tar.xz
usdx-824d7aed1a2a546c80fffc6c6e4e5299537c74d2.zip
parse all special headers
renamed finish to stop changed type of year to int
Diffstat (limited to 'src/base/song.cpp')
-rw-r--r--src/base/song.cpp28
1 files changed, 11 insertions, 17 deletions
diff --git a/src/base/song.cpp b/src/base/song.cpp
index a12a6657..a9a4c2c8 100644
--- a/src/base/song.cpp
+++ b/src/base/song.cpp
@@ -46,11 +46,10 @@ namespace usdx
title = get_header_tag("TITLE", true);
artist = get_header_tag("ARTIST", true);
mp3 = get_header_tag("MP3", true);
- // TODO
- // bpm.push_back(new BPM(get_header_tag("BPM", true)));
- // TODO: float
- // gap = get_header_tag("GAP");
+ bpm.push_back(new BPM(get_header_tag_float("BPM", true)));
+
+ gap = get_header_tag_float("GAP");
cover = get_header_tag("COVER");
background = get_header_tag("BACKGROUND");
@@ -62,28 +61,23 @@ namespace usdx
// else
// Log.LogError('Can''t find video file in song: ' +
// Fulfilling);
-
- // TODO: float
- // videogap = get_header_tag("VIDEOGAP");
+ 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");
- // TODO: int
- // year = get_header_tag("YEAR");
+ year = get_header_tag_int("YEAR");
+
+ start = get_header_tag_float("START");
+ stop = get_header_tag_int("END");
- // TODO: float
- // start = get_header_tag("START");
+ resolution = get_header_tag_int("RESOLUTION");
+ notes_gap = get_header_tag_int("NOTESGAP");
- // TODO: int
- // end = get_header_tag("END");
- // resolution = get_header_tag("RESOLUTION");
- // notesgap = get_header_tag("NOTESGAP");
+ relative = get_header_tag_bool("RELATIVE");
- // TODO: bool
- // relative = get_header_tag("RELATIVE");
// TODO
// encoding = get_header_tag("ENCODING");