mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8141231842
--HG-- extra : rebase_source : ccb167188b6c3be499e75ef3b7d65ec24d266388
1058 lines
28 KiB
C++
1058 lines
28 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
*
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing rights and limitations under the
|
|
* License.
|
|
*
|
|
* The Original Code is the Mozilla SMIL module.
|
|
*
|
|
* The Initial Developer of the Original Code is Brian Birtles.
|
|
* Portions created by the Initial Developer are Copyright (C) 2006
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Brian Birtles <birtles@gmail.com>
|
|
*
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
* the provisions above, a recipient may use your version of this file under
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#include "nsSMILTimedElement.h"
|
|
#include "nsSMILAnimationFunction.h"
|
|
#include "nsSMILTimeValue.h"
|
|
#include "nsSMILTimeValueSpec.h"
|
|
#include "nsSMILInstanceTime.h"
|
|
#include "nsSMILParserUtils.h"
|
|
#include "nsSMILTimeContainer.h"
|
|
#include "nsGkAtoms.h"
|
|
#include "nsReadableUtils.h"
|
|
#include "nsMathUtils.h"
|
|
#include "prdtoa.h"
|
|
#include "plstr.h"
|
|
#include "prtime.h"
|
|
#include "nsString.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
// Static members
|
|
|
|
nsAttrValue::EnumTable nsSMILTimedElement::sFillModeTable[] = {
|
|
{"remove", FILL_REMOVE},
|
|
{"freeze", FILL_FREEZE},
|
|
{nsnull, 0}
|
|
};
|
|
|
|
nsAttrValue::EnumTable nsSMILTimedElement::sRestartModeTable[] = {
|
|
{"always", RESTART_ALWAYS},
|
|
{"whenNotActive", RESTART_WHENNOTACTIVE},
|
|
{"never", RESTART_NEVER},
|
|
{nsnull, 0}
|
|
};
|
|
|
|
//----------------------------------------------------------------------
|
|
// Ctor, dtor
|
|
|
|
nsSMILTimedElement::nsSMILTimedElement()
|
|
:
|
|
mBeginSpecs(),
|
|
mEndSpecs(),
|
|
mFillMode(FILL_REMOVE),
|
|
mRestartMode(RESTART_ALWAYS),
|
|
mBeginSpecSet(PR_FALSE),
|
|
mEndHasEventConditions(PR_FALSE),
|
|
mClient(nsnull),
|
|
mCurrentInterval(),
|
|
mElementState(STATE_STARTUP)
|
|
{
|
|
mSimpleDur.SetIndefinite();
|
|
mMin.SetMillis(0L);
|
|
mMax.SetIndefinite();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// nsIDOMElementTimeControl methods
|
|
//
|
|
// The definition of the ElementTimeControl interface differs between SMIL
|
|
// Animation and SVG 1.1. In SMIL Animation all methods have a void return
|
|
// type and the new instance time is simply added to the list and restart
|
|
// semantics are applied as with any other instance time. In the SVG definition
|
|
// the methods return a bool depending on the restart mode.
|
|
//
|
|
// This inconsistency has now been addressed by an erratum in SVG 1.1:
|
|
//
|
|
// http://www.w3.org/2003/01/REC-SVG11-20030114-errata#elementtimecontrol-interface
|
|
//
|
|
// which favours the definition in SMIL, i.e. instance times are just added
|
|
// without first checking the restart mode.
|
|
|
|
nsresult
|
|
nsSMILTimedElement::BeginElementAt(double aOffsetSeconds,
|
|
const nsSMILTimeContainer* aContainer)
|
|
{
|
|
if (!aContainer)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsSMILTime currentTime = aContainer->GetCurrentTime();
|
|
|
|
AddInstanceTimeFromCurrentTime(currentTime, aOffsetSeconds, PR_TRUE);
|
|
|
|
// After we've added the instance time we must do a local resample.
|
|
//
|
|
// The reason for this can be explained by considering the following sequence
|
|
// of calls in a script block
|
|
//
|
|
// BeginElementAt(0)
|
|
// BeginElementAt(-1)
|
|
// GetStartTime() <-- should return the time from the first call to
|
|
// BeginElementAt
|
|
//
|
|
// After BeginElementAt(0) is called a new begin instance time is added to the
|
|
// list. Depending on the restart mode this may generate a new interval,
|
|
// possiblying ending the current interval early.
|
|
//
|
|
// Intuitively this change should take effect before the subsequent call to
|
|
// BeginElementAt however to get this to take effect we need to drive the
|
|
// state engine through its sequence active-waiting-active by calling Sample.
|
|
//
|
|
// When we get the second call to BeginElementAt the element should be in the
|
|
// active state and hence the new begin instance time will be ignored because
|
|
// it is before the beginning of the (new) current interval. SMIL says we do
|
|
// not change the begin of a current interval once it is active.
|
|
//
|
|
// See also:
|
|
// http://www.w3.org/TR/SMIL3/smil-timing.html#Timing-BeginEnd-Restart
|
|
|
|
SampleAt(currentTime);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::EndElementAt(double aOffsetSeconds,
|
|
const nsSMILTimeContainer* aContainer)
|
|
{
|
|
if (!aContainer)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsSMILTime currentTime = aContainer->GetCurrentTime();
|
|
AddInstanceTimeFromCurrentTime(currentTime, aOffsetSeconds, PR_FALSE);
|
|
SampleAt(currentTime);
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// nsSVGAnimationElement methods
|
|
|
|
nsSMILTimeValue
|
|
nsSMILTimedElement::GetStartTime() const
|
|
{
|
|
return mElementState == STATE_WAITING || mElementState == STATE_ACTIVE
|
|
? mCurrentInterval.mBegin
|
|
: nsSMILTimeValue();
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// nsSMILTimedElement
|
|
|
|
void
|
|
nsSMILTimedElement::AddInstanceTime(const nsSMILInstanceTime& aInstanceTime,
|
|
PRBool aIsBegin)
|
|
{
|
|
if (aIsBegin) {
|
|
mBeginInstances.AppendElement(aInstanceTime);
|
|
} else {
|
|
mEndInstances.AppendElement(aInstanceTime);
|
|
}
|
|
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::SetTimeClient(nsSMILAnimationFunction* aClient)
|
|
{
|
|
//
|
|
// No need to check for NULL. A NULL parameter simply means to remove the
|
|
// previous client which we do by setting to NULL anyway.
|
|
//
|
|
|
|
mClient = aClient;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::SampleAt(nsSMILTime aDocumentTime)
|
|
{
|
|
PRBool stateChanged;
|
|
nsSMILTimeValue docTime;
|
|
docTime.SetMillis(aDocumentTime);
|
|
|
|
// XXX Need to cache previous sample time and if this time is less then
|
|
// perform backwards seeking behaviour (see SMILANIM 3.6.5 Hyperlinks and
|
|
// timing)
|
|
|
|
do {
|
|
stateChanged = PR_FALSE;
|
|
|
|
switch (mElementState)
|
|
{
|
|
case STATE_STARTUP:
|
|
{
|
|
mElementState =
|
|
(NS_SUCCEEDED(GetNextInterval(nsnull, mCurrentInterval)))
|
|
? STATE_WAITING
|
|
: STATE_POSTACTIVE;
|
|
stateChanged = PR_TRUE;
|
|
}
|
|
break;
|
|
|
|
case STATE_WAITING:
|
|
{
|
|
if (mCurrentInterval.mBegin.CompareTo(docTime) <= 0) {
|
|
mElementState = STATE_ACTIVE;
|
|
if (mClient) {
|
|
mClient->Activate(mCurrentInterval.mBegin.GetMillis());
|
|
}
|
|
stateChanged = PR_TRUE;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case STATE_ACTIVE:
|
|
{
|
|
CheckForEarlyEnd(docTime);
|
|
if (mCurrentInterval.mEnd.CompareTo(docTime) <= 0) {
|
|
nsSMILInterval newInterval;
|
|
mElementState =
|
|
(NS_SUCCEEDED(GetNextInterval(&mCurrentInterval, newInterval)))
|
|
? STATE_WAITING
|
|
: STATE_POSTACTIVE;
|
|
if (mClient) {
|
|
mClient->Inactivate(mFillMode == FILL_FREEZE);
|
|
}
|
|
SampleFillValue();
|
|
mOldIntervals.AppendElement(mCurrentInterval);
|
|
mCurrentInterval = newInterval;
|
|
Reset();
|
|
stateChanged = PR_TRUE;
|
|
} else {
|
|
nsSMILTime beginTime = mCurrentInterval.mBegin.GetMillis();
|
|
nsSMILTime activeTime = aDocumentTime - beginTime;
|
|
SampleSimpleTime(activeTime);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case STATE_POSTACTIVE:
|
|
break;
|
|
}
|
|
} while (stateChanged);
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::Reset()
|
|
{
|
|
PRInt32 count = mBeginInstances.Length();
|
|
|
|
for (PRInt32 i = count - 1; i >= 0; --i) {
|
|
nsSMILInstanceTime &instance = mBeginInstances[i];
|
|
// XXX If the instance corresponds to the begin time of the current interval
|
|
// we shouldn't clear it (see SMILANIM 3.3.7). This probably only matters
|
|
// for syncbase timing where there may be dependents on that instance.
|
|
if (instance.ClearOnReset()) {
|
|
mBeginInstances.RemoveElementAt(i);
|
|
}
|
|
}
|
|
|
|
count = mEndInstances.Length();
|
|
|
|
for (PRInt32 j = count - 1; j >= 0; --j) {
|
|
nsSMILInstanceTime &instance = mEndInstances[j];
|
|
if (instance.ClearOnReset()) {
|
|
mEndInstances.RemoveElementAt(j);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::HardReset()
|
|
{
|
|
Reset();
|
|
mCurrentInterval = nsSMILInterval();
|
|
mElementState = STATE_STARTUP;
|
|
mOldIntervals.Clear();
|
|
|
|
// Remove any fill
|
|
if (mClient) {
|
|
mClient->Inactivate(PR_FALSE);
|
|
}
|
|
}
|
|
|
|
PRBool
|
|
nsSMILTimedElement::SetAttr(nsIAtom* aAttribute, const nsAString& aValue,
|
|
nsAttrValue& aResult, nsresult* aParseResult)
|
|
{
|
|
PRBool foundMatch = PR_TRUE;
|
|
nsresult parseResult = NS_OK;
|
|
|
|
if (aAttribute == nsGkAtoms::begin) {
|
|
parseResult = SetBeginSpec(aValue);
|
|
} else if (aAttribute == nsGkAtoms::dur) {
|
|
parseResult = SetSimpleDuration(aValue);
|
|
} else if (aAttribute == nsGkAtoms::end) {
|
|
parseResult = SetEndSpec(aValue);
|
|
} else if (aAttribute == nsGkAtoms::fill) {
|
|
parseResult = SetFillMode(aValue);
|
|
} else if (aAttribute == nsGkAtoms::max) {
|
|
parseResult = SetMax(aValue);
|
|
} else if (aAttribute == nsGkAtoms::min) {
|
|
parseResult = SetMin(aValue);
|
|
} else if (aAttribute == nsGkAtoms::repeatCount) {
|
|
parseResult = SetRepeatCount(aValue);
|
|
} else if (aAttribute == nsGkAtoms::repeatDur) {
|
|
parseResult = SetRepeatDur(aValue);
|
|
} else if (aAttribute == nsGkAtoms::restart) {
|
|
parseResult = SetRestart(aValue);
|
|
} else {
|
|
foundMatch = PR_FALSE;
|
|
}
|
|
|
|
if (foundMatch) {
|
|
aResult.SetTo(aValue);
|
|
if (aParseResult) {
|
|
*aParseResult = parseResult;
|
|
}
|
|
}
|
|
|
|
return foundMatch;
|
|
}
|
|
|
|
PRBool
|
|
nsSMILTimedElement::UnsetAttr(nsIAtom* aAttribute)
|
|
{
|
|
PRBool foundMatch = PR_TRUE;
|
|
|
|
if (aAttribute == nsGkAtoms::begin) {
|
|
UnsetBeginSpec();
|
|
} else if (aAttribute == nsGkAtoms::dur) {
|
|
UnsetSimpleDuration();
|
|
} else if (aAttribute == nsGkAtoms::end) {
|
|
UnsetEndSpec();
|
|
} else if (aAttribute == nsGkAtoms::fill) {
|
|
UnsetFillMode();
|
|
} else if (aAttribute == nsGkAtoms::max) {
|
|
UnsetMax();
|
|
} else if (aAttribute == nsGkAtoms::min) {
|
|
UnsetMin();
|
|
} else if (aAttribute == nsGkAtoms::repeatCount) {
|
|
UnsetRepeatCount();
|
|
} else if (aAttribute == nsGkAtoms::repeatDur) {
|
|
UnsetRepeatDur();
|
|
} else if (aAttribute == nsGkAtoms::restart) {
|
|
UnsetRestart();
|
|
} else {
|
|
foundMatch = PR_FALSE;
|
|
}
|
|
|
|
return foundMatch;
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Setters and unsetters
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetBeginSpec(const nsAString& aBeginSpec)
|
|
{
|
|
mBeginSpecSet = PR_TRUE;
|
|
return SetBeginOrEndSpec(aBeginSpec, PR_TRUE);
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetBeginSpec()
|
|
{
|
|
mBeginSpecs.Clear();
|
|
mBeginInstances.Clear();
|
|
mBeginSpecSet = PR_FALSE;
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetEndSpec(const nsAString& aEndSpec)
|
|
{
|
|
//
|
|
// When implementing events etc., don't forget to ensure
|
|
// mEndHasEventConditions is set if the specification contains conditions that
|
|
// describe event-values, repeat-values or accessKey-values.
|
|
//
|
|
return SetBeginOrEndSpec(aEndSpec, PR_FALSE);
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetEndSpec()
|
|
{
|
|
mEndSpecs.Clear();
|
|
mEndInstances.Clear();
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetSimpleDuration(const nsAString& aDurSpec)
|
|
{
|
|
nsSMILTimeValue duration;
|
|
PRBool isMedia;
|
|
nsresult rv;
|
|
|
|
rv = nsSMILParserUtils::ParseClockValue(aDurSpec, &duration,
|
|
nsSMILParserUtils::kClockValueAllowIndefinite, &isMedia);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
mSimpleDur.SetIndefinite();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (duration.IsResolved() && duration.GetMillis() == 0L) {
|
|
mSimpleDur.SetIndefinite();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
//
|
|
// SVG-specific: "For SVG's animation elements, if "media" is specified, the
|
|
// attribute will be ignored." (SVG 1.1, section 19.2.6)
|
|
//
|
|
if (isMedia)
|
|
duration.SetIndefinite();
|
|
|
|
// mSimpleDur should never be unresolved. ParseClockValue will either set
|
|
// duration to resolved/indefinite/media or will return a failure code.
|
|
NS_ASSERTION(duration.IsResolved() || duration.IsIndefinite(),
|
|
"Setting unresolved simple duration");
|
|
|
|
mSimpleDur = duration;
|
|
UpdateCurrentInterval();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetSimpleDuration()
|
|
{
|
|
mSimpleDur.SetIndefinite();
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetMin(const nsAString& aMinSpec)
|
|
{
|
|
nsSMILTimeValue duration;
|
|
PRBool isMedia;
|
|
nsresult rv;
|
|
|
|
rv = nsSMILParserUtils::ParseClockValue(aMinSpec, &duration, 0, &isMedia);
|
|
|
|
if (isMedia) {
|
|
duration.SetMillis(0L);
|
|
}
|
|
|
|
if (NS_FAILED(rv) || !duration.IsResolved()) {
|
|
mMin.SetMillis(0L);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (duration.GetMillis() < 0L) {
|
|
mMin.SetMillis(0L);
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mMin = duration;
|
|
UpdateCurrentInterval();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetMin()
|
|
{
|
|
mMin.SetMillis(0L);
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetMax(const nsAString& aMaxSpec)
|
|
{
|
|
nsSMILTimeValue duration;
|
|
PRBool isMedia;
|
|
nsresult rv;
|
|
|
|
rv = nsSMILParserUtils::ParseClockValue(aMaxSpec, &duration,
|
|
nsSMILParserUtils::kClockValueAllowIndefinite, &isMedia);
|
|
|
|
if (isMedia)
|
|
duration.SetIndefinite();
|
|
|
|
if (NS_FAILED(rv) || (!duration.IsResolved() && !duration.IsIndefinite())) {
|
|
mMax.SetIndefinite();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (duration.IsResolved() && duration.GetMillis() <= 0L) {
|
|
mMax.SetIndefinite();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mMax = duration;
|
|
UpdateCurrentInterval();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetMax()
|
|
{
|
|
mMax.SetIndefinite();
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetRestart(const nsAString& aRestartSpec)
|
|
{
|
|
nsAttrValue temp;
|
|
PRBool parseResult
|
|
= temp.ParseEnumValue(aRestartSpec, sRestartModeTable, PR_TRUE);
|
|
mRestartMode = parseResult
|
|
? nsSMILRestartMode(temp.GetEnumValue())
|
|
: RESTART_ALWAYS;
|
|
UpdateCurrentInterval();
|
|
return parseResult ? NS_OK : NS_ERROR_FAILURE;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetRestart()
|
|
{
|
|
mRestartMode = RESTART_ALWAYS;
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetRepeatCount(const nsAString& aRepeatCountSpec)
|
|
{
|
|
nsSMILRepeatCount newRepeatCount;
|
|
nsresult rv =
|
|
nsSMILParserUtils::ParseRepeatCount(aRepeatCountSpec, newRepeatCount);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
mRepeatCount = newRepeatCount;
|
|
} else {
|
|
mRepeatCount.Unset();
|
|
}
|
|
|
|
UpdateCurrentInterval();
|
|
|
|
return rv;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetRepeatCount()
|
|
{
|
|
mRepeatCount.Unset();
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetRepeatDur(const nsAString& aRepeatDurSpec)
|
|
{
|
|
nsresult rv;
|
|
nsSMILTimeValue duration;
|
|
|
|
rv = nsSMILParserUtils::ParseClockValue(aRepeatDurSpec, &duration,
|
|
nsSMILParserUtils::kClockValueAllowIndefinite);
|
|
|
|
if (NS_FAILED(rv) || (!duration.IsResolved() && !duration.IsIndefinite())) {
|
|
mRepeatDur.SetUnresolved();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
mRepeatDur = duration;
|
|
UpdateCurrentInterval();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetRepeatDur()
|
|
{
|
|
mRepeatDur.SetUnresolved();
|
|
UpdateCurrentInterval();
|
|
}
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetFillMode(const nsAString& aFillModeSpec)
|
|
{
|
|
PRUint16 previousFillMode = mFillMode;
|
|
|
|
nsAttrValue temp;
|
|
PRBool parseResult =
|
|
temp.ParseEnumValue(aFillModeSpec, sFillModeTable, PR_TRUE);
|
|
mFillMode = parseResult
|
|
? nsSMILFillMode(temp.GetEnumValue())
|
|
: FILL_REMOVE;
|
|
|
|
if (mFillMode != previousFillMode &&
|
|
(mElementState == STATE_WAITING || mElementState == STATE_POSTACTIVE) &&
|
|
mClient)
|
|
mClient->Inactivate(mFillMode == FILL_FREEZE);
|
|
|
|
return parseResult ? NS_OK : NS_ERROR_FAILURE;
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UnsetFillMode()
|
|
{
|
|
PRUint16 previousFillMode = mFillMode;
|
|
mFillMode = FILL_REMOVE;
|
|
if ((mElementState == STATE_WAITING || mElementState == STATE_POSTACTIVE) &&
|
|
previousFillMode == FILL_FREEZE &&
|
|
mClient)
|
|
mClient->Inactivate(PR_FALSE);
|
|
}
|
|
|
|
//----------------------------------------------------------------------
|
|
// Implementation helpers
|
|
|
|
nsresult
|
|
nsSMILTimedElement::SetBeginOrEndSpec(const nsAString& aSpec,
|
|
PRBool aIsBegin)
|
|
{
|
|
nsRefPtr<nsSMILTimeValueSpec> spec;
|
|
SMILTimeValueSpecList& timeSpecsList = aIsBegin ? mBeginSpecs : mEndSpecs;
|
|
nsTArray<nsSMILInstanceTime>& instancesList
|
|
= aIsBegin ? mBeginInstances : mEndInstances;
|
|
|
|
timeSpecsList.Clear();
|
|
instancesList.Clear();
|
|
HardReset(); // XXX Need to take care of time dependents here
|
|
|
|
PRInt32 start;
|
|
PRInt32 end = -1;
|
|
PRInt32 length;
|
|
|
|
do {
|
|
start = end + 1;
|
|
end = aSpec.FindChar(';', start);
|
|
length = (end == -1) ? -1 : end - start;
|
|
spec = NS_NewSMILTimeValueSpec(this, aIsBegin,
|
|
Substring(aSpec, start, length));
|
|
|
|
if (spec)
|
|
timeSpecsList.AppendElement(spec);
|
|
} while (end != -1 && spec);
|
|
|
|
if (!spec) {
|
|
timeSpecsList.Clear();
|
|
instancesList.Clear();
|
|
HardReset();
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
UpdateCurrentInterval();
|
|
|
|
return NS_OK;
|
|
}
|
|
|
|
//
|
|
// This method is based on the pseudocode given in the SMILANIM spec.
|
|
//
|
|
// See:
|
|
// http://www.w3.org/TR/2001/REC-smil-animation-20010904/#Timing-BeginEnd-LC-Start
|
|
//
|
|
nsresult
|
|
nsSMILTimedElement::GetNextInterval(const nsSMILInterval* aPrevInterval,
|
|
nsSMILInterval& aResult)
|
|
{
|
|
static nsSMILTimeValue zeroTime;
|
|
zeroTime.SetMillis(0L);
|
|
|
|
if (mRestartMode == RESTART_NEVER && aPrevInterval)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
// Calc starting point
|
|
nsSMILTimeValue beginAfter;
|
|
PRBool prevIntervalWasZeroDur = PR_FALSE;
|
|
if (aPrevInterval) {
|
|
beginAfter = aPrevInterval->mEnd;
|
|
prevIntervalWasZeroDur
|
|
= (aPrevInterval->mEnd.CompareTo(aPrevInterval->mBegin) == 0);
|
|
} else {
|
|
beginAfter.SetMillis(LL_MININT);
|
|
}
|
|
|
|
nsSMILTimeValue tempBegin;
|
|
nsSMILTimeValue tempEnd;
|
|
|
|
nsSMILInstanceTime::Comparator comparator;
|
|
mBeginInstances.Sort(comparator);
|
|
mEndInstances.Sort(comparator);
|
|
|
|
while (PR_TRUE) {
|
|
if (!mBeginSpecSet && beginAfter.CompareTo(zeroTime) <= 0) {
|
|
tempBegin.SetMillis(0);
|
|
} else {
|
|
PRInt32 beginPos = 0;
|
|
PRBool beginFound = GetNextGreaterOrEqual(mBeginInstances, beginAfter,
|
|
beginPos, tempBegin);
|
|
if (!beginFound)
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
if (mEndInstances.Length() == 0) {
|
|
nsSMILTimeValue indefiniteEnd;
|
|
indefiniteEnd.SetIndefinite();
|
|
|
|
tempEnd = CalcActiveEnd(tempBegin, indefiniteEnd);
|
|
} else {
|
|
PRInt32 endPos = 0;
|
|
PRBool endFound = GetNextGreaterOrEqual(mEndInstances, tempBegin,
|
|
endPos, tempEnd);
|
|
|
|
// If the last interval ended at the same point and was zero-duration and
|
|
// this one is too, look for another end to use instead
|
|
if (tempEnd.CompareTo(tempBegin) == 0 && prevIntervalWasZeroDur) {
|
|
endFound = GetNextGreater(mEndInstances, tempBegin, endPos, tempEnd);
|
|
}
|
|
|
|
if (!endFound) {
|
|
if (mEndHasEventConditions || mEndInstances.Length() == 0) {
|
|
tempEnd.SetUnresolved();
|
|
} else {
|
|
//
|
|
// This is a little counter-intuitive but according to SMILANIM, if
|
|
// all the ends are before the begin, we _don't_ just assume an
|
|
// infinite end, it's actually a bad interval. ASV however will just
|
|
// use an infinite end.
|
|
//
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
}
|
|
|
|
tempEnd = CalcActiveEnd(tempBegin, tempEnd);
|
|
}
|
|
|
|
// If we get two zero-length intervals in a row we will potentially have an
|
|
// infinite loop so we break it here by searching for the next begin time
|
|
// greater than tempEnd on the next time around.
|
|
if (tempEnd.IsResolved() && tempBegin.CompareTo(tempEnd) == 0) {
|
|
if (prevIntervalWasZeroDur) {
|
|
beginAfter.SetMillis(tempEnd.GetMillis()+1);
|
|
prevIntervalWasZeroDur = PR_FALSE;
|
|
continue;
|
|
}
|
|
prevIntervalWasZeroDur = PR_TRUE;
|
|
}
|
|
|
|
if (tempEnd.CompareTo(zeroTime) > 0 ||
|
|
(tempBegin.CompareTo(zeroTime) == 0 && tempEnd.CompareTo(zeroTime) == 0)) {
|
|
aResult.mBegin = tempBegin;
|
|
aResult.mEnd = tempEnd;
|
|
return NS_OK;
|
|
} else if (mRestartMode == RESTART_NEVER) {
|
|
// tempEnd <= 0 so we're going to loop which effectively means restarting
|
|
return NS_ERROR_FAILURE;
|
|
} else {
|
|
beginAfter = tempEnd;
|
|
}
|
|
}
|
|
NS_NOTREACHED("Hmm... we really shouldn't be here");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
PRBool
|
|
nsSMILTimedElement::GetNextGreater(
|
|
const nsTArray<nsSMILInstanceTime>& aList,
|
|
const nsSMILTimeValue& aBase,
|
|
PRInt32 &aPosition,
|
|
nsSMILTimeValue& aResult)
|
|
{
|
|
PRBool found;
|
|
while ((found = GetNextGreaterOrEqual(aList, aBase, aPosition, aResult))
|
|
&& aResult.CompareTo(aBase) == 0);
|
|
return found;
|
|
}
|
|
|
|
PRBool
|
|
nsSMILTimedElement::GetNextGreaterOrEqual(
|
|
const nsTArray<nsSMILInstanceTime>& aList,
|
|
const nsSMILTimeValue& aBase,
|
|
PRInt32 &aPosition,
|
|
nsSMILTimeValue& aResult)
|
|
{
|
|
PRBool found = PR_FALSE;
|
|
PRInt32 count = aList.Length();
|
|
|
|
for (; aPosition < count && !found; ++aPosition) {
|
|
const nsSMILInstanceTime &val = aList[aPosition];
|
|
if (val.Time().CompareTo(aBase) >= 0) {
|
|
aResult = val.Time();
|
|
found = PR_TRUE;
|
|
}
|
|
}
|
|
|
|
return found;
|
|
}
|
|
|
|
/**
|
|
* @see SMILANIM 3.3.4
|
|
*/
|
|
nsSMILTimeValue
|
|
nsSMILTimedElement::CalcActiveEnd(const nsSMILTimeValue& aBegin,
|
|
const nsSMILTimeValue& aEnd)
|
|
{
|
|
nsSMILTimeValue result;
|
|
|
|
NS_ASSERTION(mSimpleDur.IsResolved() || mSimpleDur.IsIndefinite(),
|
|
"Unresolved simple duration in CalcActiveEnd.");
|
|
|
|
if (!aBegin.IsResolved() && !aBegin.IsIndefinite()) {
|
|
NS_ERROR("Unresolved begin time passed to CalcActiveEnd.");
|
|
result.SetIndefinite();
|
|
return result;
|
|
}
|
|
|
|
if (mRepeatDur.IsIndefinite() || aBegin.IsIndefinite()) {
|
|
result.SetIndefinite();
|
|
} else {
|
|
result = GetRepeatDuration();
|
|
}
|
|
|
|
if (aEnd.IsResolved() && aBegin.IsResolved()) {
|
|
nsSMILTime activeDur = aEnd.GetMillis() - aBegin.GetMillis();
|
|
|
|
if (result.IsResolved()) {
|
|
result.SetMillis(PR_MIN(result.GetMillis(), activeDur));
|
|
} else {
|
|
result.SetMillis(activeDur);
|
|
}
|
|
}
|
|
|
|
result = ApplyMinAndMax(result);
|
|
|
|
if (result.IsResolved()) {
|
|
nsSMILTime activeEnd = result.GetMillis() + aBegin.GetMillis();
|
|
result.SetMillis(activeEnd);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
nsSMILTimeValue
|
|
nsSMILTimedElement::GetRepeatDuration()
|
|
{
|
|
nsSMILTimeValue result;
|
|
|
|
if (mRepeatCount.IsDefinite() && mRepeatDur.IsResolved()) {
|
|
if (mSimpleDur.IsResolved()) {
|
|
nsSMILTime activeDur = mRepeatCount * double(mSimpleDur.GetMillis());
|
|
result.SetMillis(PR_MIN(activeDur, mRepeatDur.GetMillis()));
|
|
} else {
|
|
result = mRepeatDur;
|
|
}
|
|
} else if (mRepeatCount.IsDefinite() && mSimpleDur.IsResolved()) {
|
|
nsSMILTime activeDur = mRepeatCount * double(mSimpleDur.GetMillis());
|
|
result.SetMillis(activeDur);
|
|
} else if (mRepeatDur.IsResolved()) {
|
|
result = mRepeatDur;
|
|
} else if (mRepeatCount.IsIndefinite()) {
|
|
result.SetIndefinite();
|
|
} else {
|
|
result = mSimpleDur;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
nsSMILTimeValue
|
|
nsSMILTimedElement::ApplyMinAndMax(const nsSMILTimeValue& aDuration)
|
|
{
|
|
if (!aDuration.IsResolved() && !aDuration.IsIndefinite()) {
|
|
return aDuration;
|
|
}
|
|
|
|
if (mMax.CompareTo(mMin) < 0) {
|
|
return aDuration;
|
|
}
|
|
|
|
nsSMILTimeValue result;
|
|
|
|
if (aDuration.CompareTo(mMax) > 0) {
|
|
result = mMax;
|
|
} else if (aDuration.CompareTo(mMin) < 0) {
|
|
nsSMILTimeValue repeatDur = GetRepeatDuration();
|
|
result = (mMin.CompareTo(repeatDur) > 0) ? repeatDur : mMin;
|
|
} else {
|
|
result = aDuration;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
nsSMILTime
|
|
nsSMILTimedElement::ActiveTimeToSimpleTime(nsSMILTime aActiveTime,
|
|
PRUint32& aRepeatIteration)
|
|
{
|
|
nsSMILTime result;
|
|
|
|
NS_ASSERTION(mSimpleDur.IsResolved() || mSimpleDur.IsIndefinite(),
|
|
"Unresolved simple duration in ActiveTimeToSimpleTime");
|
|
|
|
if (mSimpleDur.IsIndefinite() || mSimpleDur.GetMillis() == 0L) {
|
|
aRepeatIteration = 0;
|
|
result = aActiveTime;
|
|
} else {
|
|
result = aActiveTime % mSimpleDur.GetMillis();
|
|
aRepeatIteration = (PRUint32)(aActiveTime / mSimpleDur.GetMillis());
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
//
|
|
// Although in many cases it would be possible to check for an early end and
|
|
// adjust the current interval well in advance the SMIL Animation spec seems to
|
|
// indicate that we should only apply an early end at the latest possible
|
|
// moment. In particular, this paragraph from section 3.6.8:
|
|
//
|
|
// 'If restart is set to "always", then the current interval will end early if
|
|
// there is an instance time in the begin list that is before (i.e. earlier
|
|
// than) the defined end for the current interval. Ending in this manner will
|
|
// also send a changed time notice to all time dependents for the current
|
|
// interval end.'
|
|
//
|
|
void
|
|
nsSMILTimedElement::CheckForEarlyEnd(const nsSMILTimeValue& aDocumentTime)
|
|
{
|
|
if (mRestartMode != RESTART_ALWAYS)
|
|
return;
|
|
|
|
nsSMILTimeValue nextBegin;
|
|
PRInt32 position = 0;
|
|
|
|
GetNextGreater(mBeginInstances, mCurrentInterval.mBegin, position, nextBegin);
|
|
|
|
if (nextBegin.IsResolved() &&
|
|
nextBegin.CompareTo(mCurrentInterval.mBegin) > 0 &&
|
|
nextBegin.CompareTo(mCurrentInterval.mEnd) < 0 &&
|
|
nextBegin.CompareTo(aDocumentTime) <= 0) {
|
|
mCurrentInterval.mEnd = nextBegin;
|
|
}
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::UpdateCurrentInterval()
|
|
{
|
|
nsSMILInterval updatedInterval;
|
|
nsSMILInterval* prevInterval = mOldIntervals.IsEmpty()
|
|
? nsnull
|
|
: &mOldIntervals[mOldIntervals.Length() - 1];
|
|
nsresult rv = GetNextInterval(prevInterval, updatedInterval);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
if (mElementState != STATE_ACTIVE &&
|
|
updatedInterval.mBegin.CompareTo(mCurrentInterval.mBegin)) {
|
|
mCurrentInterval.mBegin = updatedInterval.mBegin;
|
|
}
|
|
|
|
if (updatedInterval.mEnd.CompareTo(mCurrentInterval.mEnd)) {
|
|
mCurrentInterval.mEnd = updatedInterval.mEnd;
|
|
}
|
|
|
|
if (mElementState == STATE_POSTACTIVE) {
|
|
// XXX notify dependents of new interval
|
|
mElementState = STATE_WAITING;
|
|
}
|
|
} else {
|
|
|
|
nsSMILTimeValue unresolvedTime;
|
|
mCurrentInterval.mEnd = unresolvedTime;
|
|
if (mElementState != STATE_ACTIVE) {
|
|
mCurrentInterval.mBegin = unresolvedTime;
|
|
}
|
|
|
|
if (mElementState == STATE_WAITING) {
|
|
// XXX notify dependents the current interval has been deleted
|
|
mElementState = STATE_POSTACTIVE;
|
|
}
|
|
|
|
if (mElementState == STATE_ACTIVE) {
|
|
// XXX notify dependents the current interval has been deleted
|
|
mElementState = STATE_POSTACTIVE;
|
|
if (mClient) {
|
|
mClient->Inactivate(PR_FALSE);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::SampleSimpleTime(nsSMILTime aActiveTime)
|
|
{
|
|
if (mClient) {
|
|
PRUint32 repeatIteration;
|
|
nsSMILTime simpleTime =
|
|
ActiveTimeToSimpleTime(aActiveTime, repeatIteration);
|
|
mClient->SampleAt(simpleTime, mSimpleDur, repeatIteration);
|
|
}
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::SampleFillValue()
|
|
{
|
|
if (mFillMode != FILL_FREEZE)
|
|
return;
|
|
|
|
if (!mClient)
|
|
return;
|
|
|
|
PRUint32 repeatIteration;
|
|
nsSMILTime activeTime =
|
|
mCurrentInterval.mEnd.GetMillis() - mCurrentInterval.mBegin.GetMillis();
|
|
|
|
nsSMILTime simpleTime =
|
|
ActiveTimeToSimpleTime(activeTime, repeatIteration);
|
|
|
|
if (simpleTime == 0L && repeatIteration) {
|
|
mClient->SampleLastValue(--repeatIteration);
|
|
} else {
|
|
mClient->SampleAt(simpleTime, mSimpleDur, repeatIteration);
|
|
}
|
|
}
|
|
|
|
void
|
|
nsSMILTimedElement::AddInstanceTimeFromCurrentTime(nsSMILTime aCurrentTime,
|
|
double aOffsetSeconds, PRBool aIsBegin)
|
|
{
|
|
double offset = aOffsetSeconds * PR_MSEC_PER_SEC;
|
|
nsSMILTime timeWithOffset = aCurrentTime + PRInt64(NS_round(offset));
|
|
|
|
nsSMILTimeValue timeVal;
|
|
timeVal.SetMillis(timeWithOffset);
|
|
|
|
nsSMILInstanceTime instanceTime(timeVal, nsnull, PR_TRUE);
|
|
AddInstanceTime(instanceTime, aIsBegin);
|
|
}
|