wesnoth/src/sound_music_track.cpp
2025-02-17 12:59:51 -06:00

128 lines
3.0 KiB
C++

/*
Copyright (C) 2003 - 2025
by David White <dave@whitevine.net>, Iris Morelle <shadowm2006@gmail.com>
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
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.
See the COPYING file for more details.
*/
#include "sound_music_track.hpp"
#include "config.hpp"
#include "filesystem.hpp"
#include "log.hpp"
#include "serialization/string_utils.hpp"
#include "vorbis/vorbisfile.h"
static lg::log_domain log_audio("audio");
#define ERR_AUDIO LOG_STREAM(err, log_audio)
#define LOG_AUDIO LOG_STREAM(info, log_audio)
namespace sound {
music_track::music_track()
: id_()
, file_path_()
, ms_before_(0)
, ms_after_(0)
, once_(false)
, append_(false)
, immediate_(false)
, shuffle_(true)
{
}
music_track::music_track(const config& node)
: id_(node["name"])
, file_path_()
, title_(node["title"])
, ms_before_(node["ms_before"].to_int())
, ms_after_(node["ms_after"].to_int())
, once_(node["play_once"].to_bool())
, append_(node["append"].to_bool())
, immediate_(node["immediate"].to_bool())
, shuffle_(node["shuffle"].to_bool(true))
{
resolve();
}
music_track::music_track(const std::string& v_name)
: id_(v_name)
, file_path_()
, title_()
, ms_before_(0)
, ms_after_(0)
, once_(false)
, append_(false)
, immediate_(false)
, shuffle_(true)
{
resolve();
}
void music_track::resolve()
{
if (id_.empty()) {
LOG_AUDIO << "empty track filename specified for track identification";
return;
}
if(auto path = filesystem::get_binary_file_location("music", id_)) {
file_path_ = path.value();
} else {
LOG_AUDIO << "could not find track '" << id_ << "' for track identification";
return;
}
if (title_.empty()) {
OggVorbis_File vf;
if(ov_fopen(file_path_.c_str(), &vf) < 0) {
LOG_AUDIO << "Error opening file '" << file_path_ << "' for track identification";
return;
}
vorbis_comment* comments = ov_comment(&vf, -1);
char** user_comments = comments->user_comments;
bool found = false;
for (int i=0; i< comments->comments; i++) {
const std::string comment_string(user_comments[i]);
const std::vector<std::string> comment_list = utils::split(comment_string, '=');
if (comment_list[0] == "TITLE" || comment_list[0] == "title") {
title_ = comment_list[1];
found = true;
}
}
if (!found) {
LOG_AUDIO << "No title for music track '" << id_ << "'";
}
ov_clear(&vf);
}
LOG_AUDIO << "resolved music track '" << id_ << "' into '" << file_path_ << "'";
}
void music_track::write(config &parent_node, bool append) const
{
config& m = parent_node.add_child("music");
m["name"] = id_;
m["ms_before"] = ms_before_;
m["ms_after"] = ms_after_;
if(append) {
m["append"] = true;
}
//default behaviour is to shuffle
m["shuffle"] = shuffle_;
}
} /* end namespace sound */