2011-09-28 21:44:07 +02:00
|
|
|
// Copyright (c) 2011, Thomas Goyne <plorkyeran@aegisub.org>
|
2007-06-23 02:21:20 +02:00
|
|
|
//
|
2011-09-28 21:44:07 +02:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2007-06-23 02:21:20 +02:00
|
|
|
//
|
2011-09-28 21:44:07 +02:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2007-06-23 02:21:20 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2007-06-23 02:21:20 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file ass_karaoke.cpp
|
|
|
|
/// @brief Parse and manipulate ASSA karaoke tags
|
|
|
|
/// @ingroup subs_storage
|
|
|
|
///
|
2007-06-23 02:21:20 +02:00
|
|
|
|
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-06-23 02:21:20 +02:00
|
|
|
#include "ass_karaoke.h"
|
2011-09-28 21:44:07 +02:00
|
|
|
|
|
|
|
#include "ass_dialogue.h"
|
|
|
|
#include "ass_file.h"
|
2007-06-23 02:21:20 +02:00
|
|
|
#include "ass_override.h"
|
2011-09-28 21:44:07 +02:00
|
|
|
#include "include/aegisub/context.h"
|
|
|
|
#include "selection_controller.h"
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
#ifndef AGI_PRE
|
|
|
|
#include <wx/intl.h>
|
|
|
|
#endif
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
wxString AssKaraoke::Syllable::GetText(bool k_tag) const {
|
|
|
|
wxString ret;
|
|
|
|
|
|
|
|
if (k_tag)
|
2012-10-10 05:39:43 +02:00
|
|
|
ret = wxString::Format("{%s%d}", tag_type, (duration + 5) / 10);
|
2011-09-28 21:44:07 +02:00
|
|
|
|
|
|
|
size_t idx = 0;
|
|
|
|
for (std::map<size_t, wxString>::const_iterator ovr = ovr_tags.begin(); ovr != ovr_tags.end(); ++ovr) {
|
|
|
|
ret += text.Mid(idx, ovr->first - idx);
|
|
|
|
ret += ovr->second;
|
|
|
|
idx = ovr->first;
|
|
|
|
}
|
|
|
|
ret += text.Mid(idx);
|
|
|
|
return ret;
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2012-02-16 06:21:00 +01:00
|
|
|
AssKaraoke::AssKaraoke(AssDialogue *line, bool auto_split, bool normalize)
|
2011-09-28 21:44:07 +02:00
|
|
|
: no_announce(false)
|
2007-06-23 02:21:20 +02:00
|
|
|
{
|
2012-02-16 06:21:00 +01:00
|
|
|
if (line) SetLine(line, auto_split, normalize);
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|
|
|
|
|
2012-02-16 06:21:00 +01:00
|
|
|
void AssKaraoke::SetLine(AssDialogue *line, bool auto_split, bool normalize) {
|
2011-09-28 21:44:07 +02:00
|
|
|
active_line = line;
|
|
|
|
line->ParseASSTags();
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
syls.clear();
|
|
|
|
Syllable syl;
|
2011-12-22 22:28:51 +01:00
|
|
|
syl.start_time = line->Start;
|
2011-09-28 21:44:07 +02:00
|
|
|
syl.duration = 0;
|
|
|
|
syl.tag_type = "\\k";
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
for (size_t i = 0; i < line->Blocks.size(); ++i) {
|
2007-06-23 02:21:20 +02:00
|
|
|
AssDialogueBlock *block = line->Blocks[i];
|
2011-12-26 23:21:08 +01:00
|
|
|
wxString text = block->GetText();
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
if (dynamic_cast<AssDialogueBlockPlain*>(block)) {
|
|
|
|
// treat comments as overrides rather than dialogue
|
2012-01-27 21:04:31 +01:00
|
|
|
if (text.size() && text[0] == '{')
|
2011-12-26 23:21:08 +01:00
|
|
|
syl.ovr_tags[syl.text.size()] += text;
|
2011-09-28 21:44:07 +02:00
|
|
|
else
|
2011-12-26 23:21:08 +01:00
|
|
|
syl.text += text;
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|
|
|
|
else if (dynamic_cast<AssDialogueBlockDrawing*>(block)) {
|
|
|
|
// drawings aren't override tags but they shouldn't show up in the
|
|
|
|
// stripped text so pretend they are
|
2011-12-26 23:21:08 +01:00
|
|
|
syl.ovr_tags[syl.text.size()] += text;
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|
|
|
|
else if (AssDialogueBlockOverride *ovr = dynamic_cast<AssDialogueBlockOverride*>(block)) {
|
|
|
|
bool in_tag = false;
|
|
|
|
for (size_t j = 0; j < ovr->Tags.size(); ++j) {
|
|
|
|
AssOverrideTag *tag = ovr->Tags[j];
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
if (tag->IsValid() && tag->Name.Left(2).Lower() == "\\k") {
|
|
|
|
if (in_tag) {
|
|
|
|
syl.ovr_tags[syl.text.size()] += "}";
|
|
|
|
in_tag = false;
|
|
|
|
}
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
// Dealing with both \K and \kf is mildly annoying so just
|
|
|
|
// convert them both to \kf
|
|
|
|
if (tag->Name == "\\K") tag->Name = "\\kf";
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
// Don't bother including zero duration zero length syls
|
|
|
|
if (syl.duration > 0 || !syl.text.empty()) {
|
|
|
|
syls.push_back(syl);
|
|
|
|
syl.text.clear();
|
|
|
|
syl.ovr_tags.clear();
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
syl.tag_type = tag->Name;
|
|
|
|
syl.start_time += syl.duration;
|
|
|
|
syl.duration = tag->Params[0]->Get(0) * 10;
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
2011-09-28 21:44:07 +02:00
|
|
|
else {
|
|
|
|
wxString& otext = syl.ovr_tags[syl.text.size()];
|
|
|
|
// Merge adjacent override tags
|
|
|
|
if (j == 0 && otext.size())
|
|
|
|
otext.RemoveLast();
|
|
|
|
else if (!in_tag)
|
|
|
|
otext += "{";
|
2007-06-23 02:21:20 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
in_tag = true;
|
|
|
|
otext += *tag;
|
|
|
|
}
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
2011-09-28 21:44:07 +02:00
|
|
|
|
|
|
|
if (in_tag)
|
|
|
|
syl.ovr_tags[syl.text.size()] += "}";
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
syls.push_back(syl);
|
2011-09-28 21:44:07 +02:00
|
|
|
|
|
|
|
line->ClearBlocks();
|
|
|
|
|
2012-02-16 06:21:00 +01:00
|
|
|
if (normalize) {
|
|
|
|
// Normalize the syllables so that the total duration is equal to the line length
|
|
|
|
int end_time = active_line->End;
|
|
|
|
int last_end = syl.start_time + syl.duration;
|
|
|
|
|
|
|
|
// Total duration is shorter than the line length so just extend the last
|
|
|
|
// syllable; this has no effect on rendering but is easier to work with
|
|
|
|
if (last_end < end_time)
|
|
|
|
syls.back().duration += end_time - last_end;
|
|
|
|
else if (last_end > end_time) {
|
2012-10-16 23:29:31 +02:00
|
|
|
// Truncate any syllables that extend past the end of the line
|
2012-02-16 06:21:00 +01:00
|
|
|
for (size_t i = 0; i < size(); ++i) {
|
2012-10-16 23:29:31 +02:00
|
|
|
if (syls[i].start_time > end_time) {
|
|
|
|
syls[i].start_time = end_time;
|
|
|
|
syls[i].duration = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
syls[i].duration = std::min(syls[i].duration, end_time - syls[i].start_time);
|
|
|
|
}
|
2012-02-16 06:21:00 +01:00
|
|
|
}
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add karaoke splits at each space
|
|
|
|
if (auto_split && syls.size() == 1) {
|
|
|
|
size_t pos;
|
|
|
|
no_announce = true;
|
|
|
|
while ((pos = syls.back().text.find(' ')) != wxString::npos)
|
|
|
|
AddSplit(syls.size() - 1, pos + 1);
|
|
|
|
no_announce = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AnnounceSyllablesChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString AssKaraoke::GetText() const {
|
|
|
|
wxString text;
|
|
|
|
text.reserve(size() * 10);
|
|
|
|
|
|
|
|
for (iterator it = begin(); it != end(); ++it) {
|
|
|
|
text += it->GetText(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxString AssKaraoke::GetTagType() const {
|
|
|
|
return begin()->tag_type;
|
2007-06-23 02:21:20 +02:00
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
void AssKaraoke::SetTagType(wxString const& new_type) {
|
|
|
|
for (size_t i = 0; i < size(); ++i) {
|
|
|
|
syls[i].tag_type = new_type;
|
|
|
|
}
|
|
|
|
}
|
2009-07-29 07:43:02 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
void AssKaraoke::AddSplit(size_t syl_idx, size_t pos) {
|
|
|
|
syls.insert(syls.begin() + syl_idx + 1, Syllable());
|
|
|
|
Syllable &syl = syls[syl_idx];
|
|
|
|
Syllable &new_syl = syls[syl_idx + 1];
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
// If the syl is empty or the user is adding a syllable past the last
|
|
|
|
// character then pos will be out of bounds. Doing this is a bit goofy,
|
|
|
|
// but it's sometimes required for complex karaoke scripts
|
|
|
|
if (pos < syl.text.size()) {
|
|
|
|
new_syl.text = syl.text.Mid(pos);
|
|
|
|
syl.text = syl.text.Left(pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_syl.text.empty())
|
|
|
|
new_syl.duration = 0;
|
|
|
|
else {
|
|
|
|
new_syl.duration = syl.duration * new_syl.text.size() / (syl.text.size() + new_syl.text.size());
|
|
|
|
syl.duration -= new_syl.duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(syl.duration >= 0);
|
|
|
|
|
|
|
|
new_syl.start_time = syl.start_time + syl.duration;
|
|
|
|
new_syl.tag_type = syl.tag_type;
|
|
|
|
|
|
|
|
// Move all override tags after the split to the new syllable and fix the indices
|
|
|
|
size_t text_len = syl.text.size();
|
|
|
|
for (ovr_iterator it = syl.ovr_tags.begin(); it != syl.ovr_tags.end(); ) {
|
|
|
|
if (it->first < text_len)
|
|
|
|
++it;
|
|
|
|
else {
|
|
|
|
new_syl.ovr_tags[it->first - text_len] = it->second;
|
|
|
|
syl.ovr_tags.erase(it++);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!no_announce) AnnounceSyllablesChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssKaraoke::RemoveSplit(size_t syl_idx) {
|
|
|
|
// Don't allow removing the first syllable
|
|
|
|
if (syl_idx == 0) return;
|
|
|
|
|
|
|
|
Syllable &syl = syls[syl_idx];
|
|
|
|
Syllable &prev = syls[syl_idx - 1];
|
|
|
|
|
|
|
|
prev.duration += syl.duration;
|
|
|
|
for (ovr_iterator it = syl.ovr_tags.begin(); it != syl.ovr_tags.end(); ++it) {
|
|
|
|
prev.ovr_tags[it->first + prev.text.size()] = it->second;
|
|
|
|
}
|
|
|
|
prev.text += syl.text;
|
|
|
|
|
|
|
|
syls.erase(syls.begin() + syl_idx);
|
|
|
|
|
|
|
|
if (!no_announce) AnnounceSyllablesChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AssKaraoke::SetStartTime(size_t syl_idx, int time) {
|
|
|
|
// Don't allow moving the first syllable
|
|
|
|
if (syl_idx == 0) return;
|
|
|
|
|
|
|
|
Syllable &syl = syls[syl_idx];
|
|
|
|
Syllable &prev = syls[syl_idx - 1];
|
|
|
|
|
|
|
|
assert(time >= prev.start_time);
|
|
|
|
assert(time <= syl.start_time + syl.duration);
|
|
|
|
|
|
|
|
int delta = time - syl.start_time;
|
|
|
|
syl.start_time = time;
|
|
|
|
syl.duration -= delta;
|
|
|
|
prev.duration += delta;
|
|
|
|
}
|
|
|
|
|
2012-02-22 23:00:54 +01:00
|
|
|
void AssKaraoke::SetLineTimes(int start_time, int end_time) {
|
|
|
|
assert(end_time >= start_time);
|
|
|
|
|
|
|
|
size_t idx = 0;
|
|
|
|
do {
|
|
|
|
int delta = start_time - syls[idx].start_time;
|
|
|
|
syls[idx].start_time = start_time;
|
|
|
|
syls[idx].duration = std::max(0, syls[idx].duration - delta);
|
|
|
|
} while (++idx < syls.size() && syls[idx].start_time < start_time);
|
|
|
|
|
|
|
|
idx = syls.size() - 1;
|
|
|
|
while (syls[idx].start_time > end_time) {
|
|
|
|
syls[idx].start_time = end_time;
|
|
|
|
syls[idx].duration = 0;
|
|
|
|
--idx;
|
|
|
|
}
|
|
|
|
syls[idx].duration = end_time - syls[idx].start_time;
|
|
|
|
}
|
|
|
|
|
2011-09-28 21:44:07 +02:00
|
|
|
void AssKaraoke::SplitLines(std::set<AssDialogue*> const& lines, agi::Context *c) {
|
|
|
|
if (lines.empty()) return;
|
|
|
|
|
|
|
|
AssKaraoke kara;
|
|
|
|
|
|
|
|
std::set<AssDialogue*> sel = c->selectionController->GetSelectedSet();
|
|
|
|
|
|
|
|
bool did_split = false;
|
|
|
|
for (std::list<AssEntry*>::iterator it = c->ass->Line.begin(); it != c->ass->Line.end(); ++it) {
|
|
|
|
AssDialogue *diag = dynamic_cast<AssDialogue*>(*it);
|
|
|
|
if (!diag || !lines.count(diag)) continue;
|
|
|
|
|
|
|
|
kara.SetLine(diag);
|
|
|
|
|
|
|
|
// If there aren't at least two tags there's nothing to split
|
|
|
|
if (kara.size() < 2) continue;
|
|
|
|
|
|
|
|
bool in_sel = sel.count(diag) > 0;
|
|
|
|
|
|
|
|
c->ass->Line.erase(it++);
|
|
|
|
|
|
|
|
for (iterator kit = kara.begin(); kit != kara.end(); ++kit) {
|
|
|
|
AssDialogue *new_line = new AssDialogue(*diag);
|
|
|
|
|
2011-12-22 22:28:51 +01:00
|
|
|
new_line->Start = kit->start_time;
|
|
|
|
new_line->End = kit->start_time + kit->duration;
|
2011-09-28 21:44:07 +02:00
|
|
|
new_line->Text = kit->GetText(false);
|
|
|
|
|
|
|
|
c->ass->Line.insert(it, new_line);
|
|
|
|
|
|
|
|
if (in_sel)
|
|
|
|
sel.insert(new_line);
|
|
|
|
}
|
|
|
|
sel.erase(diag);
|
|
|
|
delete diag;
|
|
|
|
--it;
|
2012-10-19 22:25:55 +02:00
|
|
|
|
|
|
|
did_split = true;
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|
|
|
|
|
2012-10-19 22:25:55 +02:00
|
|
|
if (!did_split) return;
|
|
|
|
|
|
|
|
c->ass->Commit(_("splitting"), AssFile::COMMIT_DIAG_ADDREM | AssFile::COMMIT_DIAG_FULL);
|
|
|
|
|
2012-05-05 04:11:09 +02:00
|
|
|
AssDialogue *new_active = c->selectionController->GetActiveLine();
|
2011-09-28 21:44:07 +02:00
|
|
|
if (!sel.count(c->selectionController->GetActiveLine()))
|
2012-05-05 04:11:09 +02:00
|
|
|
new_active = *sel.begin();
|
|
|
|
c->selectionController->SetSelectionAndActive(sel, new_active);
|
2011-09-28 21:44:07 +02:00
|
|
|
}
|