2006-01-16 22:02:54 +01:00
|
|
|
// Copyright (c) 2005, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
/// @file export_fixstyle.cpp
|
|
|
|
/// @brief Fix Styles export filter
|
|
|
|
/// @ingroup export
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-11-05 17:20:58 +01:00
|
|
|
#include "export_fixstyle.h"
|
|
|
|
|
2010-06-24 03:24:37 +02:00
|
|
|
#include <algorithm>
|
2012-12-30 01:32:36 +01:00
|
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
2010-06-24 03:24:37 +02:00
|
|
|
#include <functional>
|
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "ass_file.h"
|
|
|
|
#include "ass_dialogue.h"
|
2012-12-30 01:32:36 +01:00
|
|
|
#include "compat.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-11-05 17:20:58 +01:00
|
|
|
#include <libaegisub/of_type_adaptor.h>
|
|
|
|
|
2011-01-21 07:09:04 +01:00
|
|
|
AssFixStylesFilter::AssFixStylesFilter()
|
2013-01-03 04:22:04 +01:00
|
|
|
: AssExportFilter(_("Fix Styles"), _("Fixes styles by replacing any style that isn't available on file with Default."), -5000)
|
2011-01-21 07:09:04 +01:00
|
|
|
{
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-01-21 07:09:04 +01:00
|
|
|
void AssFixStylesFilter::ProcessSubs(AssFile *subs, wxWindow *) {
|
2012-12-30 01:32:36 +01:00
|
|
|
std::vector<std::string> styles = subs->GetStyles();
|
|
|
|
for_each(begin(styles), end(styles), [](std::string& str) { boost::to_lower(str); });
|
|
|
|
sort(begin(styles), end(styles));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2012-11-05 17:20:58 +01:00
|
|
|
for (auto diag : subs->Line | agi::of_type<AssDialogue>()) {
|
2012-12-30 01:32:36 +01:00
|
|
|
if (!binary_search(begin(styles), end(styles), from_wx(diag->Style.get().Lower())))
|
2012-11-05 17:20:58 +01:00
|
|
|
diag->Style = "Default";
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|