Files
core/OdfFile/Reader/Format/anim_elements.cpp
2023-07-05 17:14:06 +05:00

537 lines
21 KiB
C++

/*
* (c) Copyright Ascensio System SIA 2010-2023
*
* This program is a free software product. You can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License (AGPL)
* version 3 as published by the Free Software Foundation. In accordance with
* Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect
* that Ascensio System SIA expressly excludes the warranty of non-infringement
* of any third-party rights.
*
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
* details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
*
* You can contact Ascensio System SIA at 20A-6 Ernesta Birznieka-Upish
* street, Riga, Latvia, EU, LV-1050.
*
* The interactive user interfaces in modified source and object code versions
* of the Program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU AGPL version 3.
*
* Pursuant to Section 7(b) of the License you must retain the original Product
* logo when distributing the program. Pursuant to Section 7(e) we decline to
* grant you any rights under trademark law for use of our trademarks.
*
* All the Product's GUI elements, including illustrations and icon sets, as
* well as technical writing content are licensed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International. See the License
* terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
*
*/
#include "anim_elements.h"
#include "serialize_elements.h"
#include "odfcontext.h"
#include "odf_document.h"
#include "draw_common.h"
#include "../Converter/pptx_animation_context.h"
#include <xml/xmlchar.h>
#include <xml/simple_xml_writer.h>
namespace cpdoccore {
using namespace odf_types;
namespace odf_reader {
///////////////////////////////////////////////////////////////////////////////////////////////////////
const wchar_t* anim_par::ns = L"anim";
const wchar_t* anim_par::name = L"par";
void anim_par_attlist::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
CP_APPLY_ATTR(L"presentation:preset-class", presentation_preset_class_);
CP_APPLY_ATTR(L"presentation:preset-id", presentation_preset_id_);
CP_APPLY_ATTR(L"presentation:preset-sub-type", presentation_preset_sub_type_);
CP_APPLY_ATTR(L"smil:accelerate", smil_accelerate_);
CP_APPLY_ATTR(L"smil:decelerate", smil_decelerate_);
}
void anim_par::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
common_attlist_.add_attributes(Attributes);
par_attlist_.add_attributes(Attributes);
}
void anim_par::pptx_convert(oox::pptx_conversion_context & Context)
{
oox::pptx_animation_context & animationContext = Context.get_slide_context().get_animation_context();
_CP_OPT(std::wstring) presentationNodeType;
_CP_OPT(std::wstring) direction;
_CP_OPT(std::wstring) restart;
_CP_OPT(int) duration;
_CP_OPT(std::wstring) delay; // NOTE: Comes from smil:begin
_CP_OPT(std::wstring) end;
_CP_OPT(std::wstring) presentationPresetClass;
_CP_OPT(std::wstring) presentationPresetId;
_CP_OPT(std::wstring) presentationPresetPresetSubType;
// NOTE: в pptx нет атрибутов accelerate/decelerate. Там надо менять svg path ???
//_CP_OPT(std::wstring) accelerate;
//_CP_OPT(std::wstring) decelerate;
if (common_attlist_.presentation_node_type_)
{
if (common_attlist_.presentation_node_type_.value() == L"timing-root") presentationNodeType = L"tmRoot";
else if (common_attlist_.presentation_node_type_.value() == L"on-click") presentationNodeType = L"clickEffect";
else if (common_attlist_.presentation_node_type_.value() == L"after-previous") presentationNodeType = L"afterEffect";
else if (common_attlist_.presentation_node_type_.value() == L"with-previous") presentationNodeType = L"withEffect";
}
if (common_attlist_.smil_direction_)
{
if (common_attlist_.smil_direction_.value() == L"reverse")
direction = L"reverse";
}
if (common_attlist_.smil_restart_)
{
// smil:restart = "never", "always", "whenNotActive" or "default".
// NOTE: Hardcode for now
// TODO: Figure out correct value
restart = boost::none;
}
if (common_attlist_.smil_dur_)
{
duration = common_attlist_.smil_dur_->get_value();
}
if (common_attlist_.smil_begin_)
{
clockvalue delayClockvalue = clockvalue::parse(common_attlist_.smil_begin_.get());
if (delayClockvalue.get_value() != -1)
delay = boost::lexical_cast<std::wstring>(delayClockvalue.get_value());
else if (common_attlist_.smil_begin_.get() == L"next")
delay = L"indefinite";
}
// NOTE: Юзлес штука
// TODO: Figure out correct value
end = boost::none;
if (par_attlist_.presentation_preset_class_)
{
if (par_attlist_.presentation_preset_class_.value() == L"entrance") presentationPresetClass = L"entr";
else if (par_attlist_.presentation_preset_class_.value() == L"exit") presentationPresetClass = L"exit";
else if (par_attlist_.presentation_preset_class_.value() == L"emphasis") presentationPresetClass = L"emph";
else if (par_attlist_.presentation_preset_class_.value() == L"motion-path") presentationPresetClass = L"path";
else if (par_attlist_.presentation_preset_class_.value() == L"ole-action") presentationPresetClass = L"verb";
else if (par_attlist_.presentation_preset_class_.value() == L"media-call") presentationPresetClass = L"mediacall";
else
presentationPresetClass = L"custom";
}
if (par_attlist_.presentation_preset_id_)
{
// TODO: Figure out correct value
presentationPresetId = boost::none;
}
animationContext.start_par_animation();
if (presentationNodeType) animationContext.set_par_animation_presentation_node_type (presentationNodeType.value());
if (direction) animationContext.set_par_animation_direction (direction.value());
if (restart) animationContext.set_par_animation_restart (restart.value());
if (duration) animationContext.set_par_animation_duration (duration.value());
if (delay) animationContext.set_par_animation_delay (delay.value());
if (end) animationContext.set_par_animation_end (end.value());
if (presentationPresetClass) animationContext.set_par_animation_preset_class (presentationPresetClass.value());
if (presentationPresetId) animationContext.set_par_animation_preset_id (presentationPresetId.value());
if (anim_par_array_.size())
{
Context.get_slide_context().start_slide_animation();
for(size_t i = 0; i < anim_par_array_.size(); i++)
anim_par_array_[i]->pptx_convert(Context); // это для самого слайда (то что и нужно)
Context.get_slide_context().end_slide_animation();
}
for (size_t i = 0; i < anim_seq_array_.size(); i++)
{
anim_seq_array_[i]->pptx_convert(Context);
}
/////////////////////////////////////////////////////////////////
//внутренние эффекты - те что внутри одной последовательности
for (size_t i = 0; i < content_.size(); i++)
{
content_[i]->pptx_convert(Context);
}
animationContext.end_par_animation();
}
void anim_par::add_child_element( xml::sax * Reader, const std::wstring & Ns, const std::wstring & Name)
{
if CP_CHECK_NAME(L"anim", L"par")
CP_CREATE_ELEMENT(anim_par_array_);
else if CP_CHECK_NAME(L"anim", L"seq")
CP_CREATE_ELEMENT(anim_seq_array_);//более 1 элемента- взаимосвязанная анимация (между фигурами)
else
CP_CREATE_ELEMENT(content_);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
const wchar_t * anim_seq::ns = L"anim";
const wchar_t * anim_seq::name = L"seq";
void anim_seq::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
attlist_.add_attributes(Attributes);
}
void anim_seq::pptx_convert(oox::pptx_conversion_context & Context)
{
oox::pptx_animation_context& animationContext = Context.get_slide_context().get_animation_context();
animationContext.start_seq_animation();
if (attlist_.presentation_node_type_) animationContext.set_seq_animation_presentation_node_type(attlist_.presentation_node_type_.value());
if (attlist_.smil_direction_) animationContext.set_seq_animation_smil_direction(attlist_.smil_direction_.value());
if (attlist_.smil_restart_) animationContext.set_seq_animation_smil_restart(attlist_.smil_restart_.value());
if (attlist_.smil_dur_) animationContext.set_seq_animation_smil_dur(attlist_.smil_dur_.value().get_value());
if (attlist_.smil_begin_) animationContext.set_seq_animation_smil_begin(attlist_.smil_begin_.value());
if (attlist_.smil_end_) animationContext.set_seq_animation_smil_end(attlist_.smil_end_.value());
for (size_t i = 0; i < anim_par_array_.size(); i++)
{
anim_par_array_[i]->pptx_convert(Context);
}
animationContext.end_seq_animation();
}
void anim_seq::add_child_element( xml::sax * Reader, const std::wstring & Ns, const std::wstring & Name)
{
if CP_CHECK_NAME(L"anim", L"par")
CP_CREATE_ELEMENT(anim_par_array_);
}
////////////////////////////////////////////////////////////////
void anim_transition_filter_attlist::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
CP_APPLY_ATTR(L"smil:subtype", smil_subtype_);
CP_APPLY_ATTR(L"smil:type", smil_type_);
CP_APPLY_ATTR(L"smil:fadeColor", smil_fadeColor_);
CP_APPLY_ATTR(L"smil:mode", smil_mode_);
}
void anim_audio_attlist::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
CP_APPLY_ATTR(L"xlink:href", xlink_href_);
CP_APPLY_ATTR(L"anim:audio-level", anim_audio_level_);
}
const wchar_t * anim_transitionFilter::ns = L"anim";
const wchar_t * anim_transitionFilter::name = L"transitionFilter";
void anim_transitionFilter::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
common_attlist_.add_attributes(Attributes);
filter_attlist_.add_attributes(Attributes);
}
void anim_transitionFilter::pptx_convert(oox::pptx_conversion_context & Context)
{
_CP_OPT(std::wstring) color;
_CP_OPT(std::wstring) dir;
_CP_OPT(int) time;
std::wstring type;
_CP_OPT(std::wstring) param;
if (common_attlist_.smil_dur_)
{
time = common_attlist_.smil_dur_->get_value();
}
if (filter_attlist_.smil_fadeColor_)
{
color = filter_attlist_.smil_fadeColor_->get_hex_value();
}
smil_transition_type::type transition_type;
if (filter_attlist_.smil_type_)
{
transition_type = filter_attlist_.smil_type_->get_type();
}
switch(transition_type)
{
case smil_transition_type::barnVeeWipe:
type = L"split";
break;
case smil_transition_type::irisWipe:
if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"diamond"))
type = L"diamond";
else
type = L"zoom";
break;
case smil_transition_type::miscDiagonalWipe:
if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"doubleDiamond"))
type = L"diamond";
else
type = L"zoom";
break;
case smil_transition_type::ellipseWipe:
case smil_transition_type::eyeWipe:
type = L"circle";
break;
case smil_transition_type::roundRectWipe:
type = L"zoom";
break;
case smil_transition_type::fourBoxWipe:
case smil_transition_type::triangleWipe:
case smil_transition_type::arrowHeadWipe:
case smil_transition_type::pentagonWipe:
case smil_transition_type::hexagonWipe:
case smil_transition_type::starWipe:
case smil_transition_type::miscShapeWipe:
type = L"plus";
break;
case smil_transition_type::pinWheelWipe:
param = L"2";
case smil_transition_type::clockWipe:
case smil_transition_type::singleSweepWipe: //
case smil_transition_type::doubleFanWipe: //
type = L"wheel";
if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"oneBlade")) param = L"1";
else if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"threeBlade")) param = L"3";
else if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"fourBlade")) param = L"4";
else if ((filter_attlist_.smil_subtype_) && (filter_attlist_.smil_subtype_.get()==L"eightBlade")) param = L"8";
break;
case smil_transition_type::fanWipe:
type = L"wedge";
break;
case smil_transition_type::fade:
type = L"fade";
param = L"1";
break;
case smil_transition_type::checkerBoardWipe:
type = L"checker";
if (filter_attlist_.smil_subtype_.get()==L"across") dir = L"horz";
if (filter_attlist_.smil_subtype_.get()==L"down") dir = L"vert";
break;
case smil_transition_type::blindsWipe:
type = L"blinds";
if (filter_attlist_.smil_subtype_.get()==L"vertical") dir = L"vert";
else if (filter_attlist_.smil_subtype_.get()==L"horizontal") dir = L"horz";
break;
case smil_transition_type::diagonalWipe:
case smil_transition_type::waterfallWipe:
type = L"strips";
if (filter_attlist_.smil_subtype_)
{
if (filter_attlist_.smil_subtype_.get() == L"horizontalLeft") dir = L"rd";
else if (filter_attlist_.smil_subtype_.get() == L"horizontalRight") dir = L"lu";
else if (filter_attlist_.smil_subtype_.get() == L"verticalRight") dir = L"ld";
else dir = L"ru";
}
break;
case smil_transition_type::dissolve:
type = L"dissolve";
break;
case smil_transition_type::randomBarWipe:
type = L"randomBar";
if (filter_attlist_.smil_subtype_.get() == L"vertical") dir = L"vert";
else if (filter_attlist_.smil_subtype_.get() == L"horizontal") dir = L"horz";
break;
case smil_transition_type::pushWipe:
type = L"push";
if (filter_attlist_.smil_subtype_.get() == L"combVertical") {type = L"comb"; dir = L"vert";}
else if (filter_attlist_.smil_subtype_.get() == L"combHorizontal") {type = L"comb"; dir = L"horz";}
break;
case smil_transition_type::slideWipe:
type = L"pull";
break;
case smil_transition_type::boxWipe:
type = L"cover";
break;
case smil_transition_type::barnDoorWipe:
type = L"split";
if (filter_attlist_.smil_subtype_.get() == L"vertical") param = L"vert";
if (filter_attlist_.smil_subtype_.get() == L"horizontal") param = L"horz";
break;
case smil_transition_type::barWipe:
type = L"wipe";
if (filter_attlist_.smil_subtype_)
{
if (filter_attlist_.smil_subtype_.get()==L"fromTopLeft") {type = L"strips"; dir = L"rd";}
else if (filter_attlist_.smil_subtype_.get()==L"fromBottomLeft") {type = L"strips"; dir = L"ru";}
else if (filter_attlist_.smil_subtype_.get()==L"fromTopRight") {type = L"strips"; dir = L"ld";}
else if (filter_attlist_.smil_subtype_.get()==L"fromBottomRight") {type = L"strips"; dir = L"lu";}
else if (filter_attlist_.smil_subtype_.get()==L"fadeOverColor") {type = L"fade"; param = L"0";}
}
break;
///////////////////////////////////////////////////////
case smil_transition_type::bowTieWipe:
case smil_transition_type::veeWipe:
case smil_transition_type::zigZagWipe:
case smil_transition_type::barnZigZagWipe:
case smil_transition_type::doubleSweepWipe:
case smil_transition_type::saloonDoorWipe:
case smil_transition_type::windshieldWipe:
case smil_transition_type::snakeWipe:
case smil_transition_type::spiralWipe:
case smil_transition_type::parallelSnakesWipe:
case smil_transition_type::boxSnakesWipe:
break;
//////////////////////////////////////////////////////
}
if (filter_attlist_.smil_subtype_)
{
if (!dir)
{
if (filter_attlist_.smil_subtype_.get()==L"leftToRight")
{
if ((common_attlist_.smil_direction_) && (common_attlist_.smil_direction_.get()==L"reverse"))dir = L"l";
else dir = L"r";
}
if (filter_attlist_.smil_subtype_.get()==L"topToBottom")
{
if ((common_attlist_.smil_direction_) && (common_attlist_.smil_direction_.get()==L"reverse"))dir = L"u";
else dir = L"d";
}
if (filter_attlist_.smil_subtype_.get()==L"fromTop") dir = L"d";
else if (filter_attlist_.smil_subtype_.get()==L"fromLeft") dir = L"r";
else if (filter_attlist_.smil_subtype_.get()==L"fromRight") dir = L"l";
else if (filter_attlist_.smil_subtype_.get()==L"fromBottom") dir = L"u";
else if (filter_attlist_.smil_subtype_.get()==L"topRight") dir = L"ld";
else if (filter_attlist_.smil_subtype_.get()==L"bottomLeft") dir = L"lu";
else if (filter_attlist_.smil_subtype_.get()==L"bottomRight") dir = L"ru";
else if (filter_attlist_.smil_subtype_.get()==L"topLeft") dir = L"rd";
else if (filter_attlist_.smil_subtype_.get()==L"fromTopLeft") dir = L"rd";
else if (filter_attlist_.smil_subtype_.get()==L"fromBottomLeft")dir = L"ru";
else if (filter_attlist_.smil_subtype_.get()==L"fromTopRight") dir = L"ld";
else if (filter_attlist_.smil_subtype_.get()==L"fromBottomRight")dir = L"lu";
}
if (!dir && (common_attlist_.smil_direction_) && (common_attlist_.smil_direction_.get()==L"reverse"))
dir = L"in";
}
Context.get_slide_context().set_transitionFilter(type , dir, param , time);
}
const wchar_t * anim_audio::ns = L"anim";
const wchar_t * anim_audio::name = L"audio";
void anim_audio::add_attributes( const xml::attributes_wc_ptr & Attributes )
{
common_attlist_.add_attributes(Attributes);
audio_attlist_.add_attributes(Attributes);
}
void anim_audio::pptx_convert(oox::pptx_conversion_context & Context)
{
}
////////////////////////////////////////////////////////////////
void anim_set_attlist::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
CP_APPLY_ATTR(L"smil:fill", smil_fill_);
CP_APPLY_ATTR(L"smil:targetElement", smil_target_element_);
CP_APPLY_ATTR(L"smil:attributeName", smil_attribute_name_);
CP_APPLY_ATTR(L"smil:to", smil_to_);
}
const wchar_t* anim_set::ns = L"anim";
const wchar_t* anim_set::name = L"set";
void anim_set::pptx_convert(oox::pptx_conversion_context& Context)
{
}
void anim_set::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
common_attlist_.add_attributes(Attributes);
set_attlist_.add_attributes(Attributes);
}
////////////////////////////////////////////////////////////////
void anim_animate_motion_attlist::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
CP_APPLY_ATTR(L"smil:fill", smil_fill_);
CP_APPLY_ATTR(L"smil:targetElement", smil_target_element_);
CP_APPLY_ATTR(L"svg:path", svg_path_);
}
const wchar_t* anim_animate_motion::ns = L"anim";
const wchar_t* anim_animate_motion::name = L"animateMotion";
void anim_animate_motion::pptx_convert(oox::pptx_conversion_context& Context)
{
oox::pptx_animation_context& animationContext = Context.get_slide_context().get_animation_context();
animationContext.start_animate_motion();
if (common_attlist_.presentation_node_type_) animationContext.set_animate_motion_presentation_node_type(common_attlist_.presentation_node_type_.value());
if (common_attlist_.smil_direction_) animationContext.set_animate_motion_smil_direction(common_attlist_.smil_direction_.value());
if (common_attlist_.smil_restart_) animationContext.set_animate_motion_smil_restart(common_attlist_.smil_restart_.value());
if (common_attlist_.smil_dur_) animationContext.set_animate_motion_smil_dur(common_attlist_.smil_dur_.value().get_value());
if (common_attlist_.smil_begin_) animationContext.set_animate_motion_smil_begin(common_attlist_.smil_begin_.value());
if (common_attlist_.smil_end_) animationContext.set_animate_motion_smil_end(common_attlist_.smil_end_.value());
if (animate_motion_attlist_.smil_fill_) animationContext.set_animate_motion_smil_fill(animate_motion_attlist_.smil_fill_.value());
if (animate_motion_attlist_.smil_target_element_) animationContext.set_animate_motion_smil_target_element(animate_motion_attlist_.smil_target_element_.value());
if (animate_motion_attlist_.svg_path_) animationContext.set_animate_motion_svg_path(animate_motion_attlist_.svg_path_.value());
animationContext.end_animate_motion();
}
void anim_animate_motion::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
common_attlist_.add_attributes(Attributes);
animate_motion_attlist_.add_attributes(Attributes);
}
////////////////////////////////////////////////////////////////
void anim_animate_color_attlist::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
CP_APPLY_ATTR(L"smil:fill", smil_fill_);
CP_APPLY_ATTR(L"smil:targetElement", smil_target_element_);
CP_APPLY_ATTR(L"smil:attributeName", smil_attribute_name_);
CP_APPLY_ATTR(L"smil:to", smil_to_);
CP_APPLY_ATTR(L"presentation:master-elemen", presentation_master_element_);
CP_APPLY_ATTR(L"anim:color-interpolation", anim_color_interpolation_);
CP_APPLY_ATTR(L"anim:color-interpolation-direction", anim_color_interpolation_direction);
}
const wchar_t* anim_animate_color::ns = L"anim";
const wchar_t* anim_animate_color::name = L"animateColor";
void anim_animate_color::pptx_convert(oox::pptx_conversion_context& Context)
{
}
void anim_animate_color::add_attributes(const xml::attributes_wc_ptr& Attributes)
{
common_attlist_.add_attributes(Attributes);
animate_color_attlist_.add_attributes(Attributes);
}
}
}