2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2009-08-25 04:05:37 +00:00
|
|
|
* 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
|
2012-03-18 09:27:36 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2009-08-25 04:05:37 +00:00
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-08-25 04:05:37 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup RNA
|
2011-02-27 20:20:01 +00:00
|
|
|
*/
|
|
|
|
|
|
2009-08-25 04:05:37 +00:00
|
|
|
#include <stdio.h>
|
2020-03-19 09:33:03 +01:00
|
|
|
#include <stdlib.h>
|
2009-08-25 04:05:37 +00:00
|
|
|
|
|
|
|
|
#include "RNA_define.h"
|
|
|
|
|
#include "RNA_enum_types.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_anim_types.h"
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
|
2012-09-20 01:02:39 +00:00
|
|
|
#include "rna_internal.h" /* own include */
|
2011-08-15 10:37:26 +00:00
|
|
|
|
2009-08-25 04:05:37 +00:00
|
|
|
#ifdef RNA_RUNTIME
|
|
|
|
|
|
2011-08-15 10:37:26 +00:00
|
|
|
# include "BKE_context.h"
|
2019-05-13 21:01:03 +03:00
|
|
|
# include "BKE_nla.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
# include "BKE_report.h"
|
2011-08-15 10:37:26 +00:00
|
|
|
|
|
|
|
|
# include "ED_keyframing.h"
|
|
|
|
|
|
|
|
|
|
static void rna_KeyingSet_context_refresh(KeyingSet *ks, bContext *C, ReportList *reports)
|
|
|
|
|
{
|
2012-03-05 23:30:41 +00:00
|
|
|
/* TODO: enable access to providing a list of overrides (dsources)? */
|
2020-03-06 16:45:56 +11:00
|
|
|
const eModifyKey_Returns error = ANIM_validate_keyingset(C, NULL, ks);
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2020-03-06 16:45:56 +11:00
|
|
|
if (error != 0) {
|
|
|
|
|
switch (error) {
|
2011-08-15 10:37:26 +00:00
|
|
|
case MODIFYKEY_INVALID_CONTEXT:
|
2012-10-21 14:02:30 +00:00
|
|
|
BKE_report(reports, RPT_ERROR, "Invalid context for keying set");
|
2011-08-15 10:37:26 +00:00
|
|
|
break;
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2011-08-15 10:37:26 +00:00
|
|
|
case MODIFYKEY_MISSING_TYPEINFO:
|
2012-10-21 14:02:30 +00:00
|
|
|
BKE_report(
|
|
|
|
|
reports, RPT_ERROR, "Incomplete built-in keying set, appears to be missing type info");
|
2011-08-15 10:37:26 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-25 04:05:37 +00:00
|
|
|
|
2019-05-13 21:01:03 +03:00
|
|
|
static float rna_AnimData_nla_tweak_strip_time_to_scene(AnimData *adt, float frame, bool invert)
|
|
|
|
|
{
|
|
|
|
|
return BKE_nla_tweakedit_remap(adt, frame, invert ? NLATIME_CONVERT_UNMAP : NLATIME_CONVERT_MAP);
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-25 04:05:37 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
void RNA_api_keyingset(StructRNA *srna)
|
|
|
|
|
{
|
2011-08-15 10:37:26 +00:00
|
|
|
FunctionRNA *func;
|
2012-03-05 23:30:41 +00:00
|
|
|
/*PropertyRNA *parm; */
|
2019-04-17 06:17:24 +02:00
|
|
|
|
2011-08-15 10:37:26 +00:00
|
|
|
/* validate relative Keying Set (used to ensure paths are ok for context) */
|
2012-03-05 23:30:41 +00:00
|
|
|
func = RNA_def_function(srna, "refresh", "rna_KeyingSet_context_refresh");
|
2012-03-18 09:27:36 +00:00
|
|
|
RNA_def_function_ui_description(
|
|
|
|
|
func,
|
|
|
|
|
"Refresh Keying Set to ensure that it is valid for the current context "
|
|
|
|
|
"(call before each use of one)");
|
2012-05-12 11:01:29 +00:00
|
|
|
RNA_def_function_flag(func, FUNC_USE_CONTEXT | FUNC_USE_REPORTS);
|
2009-08-25 04:05:37 +00:00
|
|
|
}
|
|
|
|
|
|
2019-05-13 21:01:03 +03:00
|
|
|
void RNA_api_animdata(StructRNA *srna)
|
|
|
|
|
{
|
|
|
|
|
FunctionRNA *func;
|
|
|
|
|
PropertyRNA *parm;
|
|
|
|
|
|
|
|
|
|
/* Convert between action time and scene time when tweaking a NLA strip. */
|
|
|
|
|
func = RNA_def_function(
|
|
|
|
|
srna, "nla_tweak_strip_time_to_scene", "rna_AnimData_nla_tweak_strip_time_to_scene");
|
|
|
|
|
RNA_def_function_ui_description(func,
|
|
|
|
|
"Convert a time value from the local time of the tweaked strip "
|
|
|
|
|
"to scene time, exactly as done by built-in key editing tools. "
|
|
|
|
|
"Returns the input time unchanged if not tweaking.");
|
|
|
|
|
parm = RNA_def_float(
|
|
|
|
|
func, "frame", 0.0, MINAFRAME, MAXFRAME, "", "Input time", MINAFRAME, MAXFRAME);
|
|
|
|
|
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
|
|
|
|
|
RNA_def_boolean(func, "invert", false, "Invert", "Convert scene time to action time");
|
|
|
|
|
parm = RNA_def_float(
|
|
|
|
|
func, "result", 0.0, MINAFRAME, MAXFRAME, "", "Converted time", MINAFRAME, MAXFRAME);
|
|
|
|
|
RNA_def_function_return(func, parm);
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-25 04:05:37 +00:00
|
|
|
#endif
|