Use agi::line_iterator for loading keyframe files

line_iterator supports Windows newlines on non-Windows platforms, unlike
istream_iterator.
This commit is contained in:
Thomas Goyne 2013-05-02 09:20:54 -07:00
parent 1b96bf748f
commit 0638af6825
1 changed files with 3 additions and 3 deletions

View File

@ -37,15 +37,15 @@ std::vector<int> agi_keyframes(std::istream &file) {
file >> fps_str;
file >> fps;
return std::vector<int>(std::istream_iterator<int>(file), std::istream_iterator<int>());
return std::vector<int>(agi::line_iterator<int>(file), agi::line_iterator<int>());
}
std::vector<int> other_keyframes(std::istream &file, char (*func)(std::string const&)) {
int count = 0;
std::vector<int> ret;
agi::line_iterator<std::string> end;
for (agi::line_iterator<std::string> iter(file); iter != end; ++iter) {
char c = tolower(func(*iter));
for (auto line : agi::line_iterator<std::string>(file)) {
char c = tolower(func(line));
if (c == 'i')
ret.push_back(count++);
else if (c == 'p' || c == 'b')