本文整理匯總了C#中Thalamus.Actions.SyncPoint類的典型用法代碼示例。如果您正苦於以下問題:C# SyncPoint類的具體用法?C# SyncPoint怎麽用?C# SyncPoint使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SyncPoint類屬於Thalamus.Actions命名空間,在下文中一共展示了SyncPoint類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Head
public Head(string id, string lexeme, int repetitions, double frequency, SyncPoint startTime, SyncPoint endTime)
: base(id, startTime, endTime)
{
this.Repetitions = repetitions;
this.Lexeme = lexeme;
this.Frequency = frequency;
}
示例2: Sound
public Sound(string id, string soundName, SyncPoint startTime, SyncPoint endTime, PlaybackMode playbackMode, float volume, float pitch)
: base(id, startTime, endTime)
{
this.Mode = playbackMode;
this.Volume = volume;
this.Pitch = pitch;
this.SoundName = soundName;
}
示例3: Locomotion
public Locomotion(string id, SyncPoint startTime, SyncPoint endTime, String target) : base(id, startTime, endTime) {
IsXY = false;
Target = target;
string[] splits = target.Split(' ');
if (splits.Length == 3 && splits[0] == "xy")
{
try
{
X = float.Parse(splits[1], ifp);
Y = float.Parse(splits[2], ifp);
}
catch { }
}
else if (splits.Length == 4 && splits[0] == "xyt")
{
try
{
X = float.Parse(splits[1], ifp);
Y = float.Parse(splits[2], ifp);
Angle = float.Parse(splits[3], ifp);
}
catch { }
}
}
示例4: PostureShift
public PostureShift(SyncPoint startTime, SyncPoint endTime) : this("PostureShift" + Counter++, startTime, endTime) { }
示例5: BMLPointingToAction
private Actions.Pointing BMLPointingToAction(string id, Pointing pointing, string start, string end) {
if (id == null) id = "";
Actions.PointingMode mode = Actions.PointingMode.RightHand;
if (pointing.modeSpecified) mode = BMLPointingModeToPointingMode(pointing.mode);
string target = pointing.target;
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (start != null && start != "") startPoint = new Actions.SyncPoint(start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (end != null && end != "") endPoint = new Actions.SyncPoint(end);
return new Actions.Pointing(id, target, mode, startPoint, endPoint);
}
示例6: BMLGazeShiftToAction
private Actions.GazeShift BMLGazeShiftToAction(string id, GazeShift gaze, string start, string end)
{
if (id == null) id = "";
Actions.Direction direction = Actions.Direction.Straight;
if (gaze.offsetdirectionSpecified) direction = BMLDirectionToDirection(gaze.offsetdirection);
float angle = 0;
if (gaze.offsetangleSpecified) angle = gaze.offsetangle;
float speed = 1;
if (gaze.speedSpecified) speed = gaze.speed;
Actions.GazeInfluence influence = BMLGazeInfluenceToGazeInfluence(gaze.influence);
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (start != null && start != "") startPoint = new Actions.SyncPoint(start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (end != null && end != "") endPoint = new Actions.SyncPoint(end);
string target = "";
if (gaze.target != null) target = gaze.target;
return new Actions.GazeShift(id, target, influence, angle, direction, speed, startPoint, endPoint);
}
示例7: Gaze
public Gaze(double offsetAngle, SyncPoint startTime, SyncPoint endTime) : this("Gaze" + Counter++, "", GazeInfluence.Eyes, offsetAngle, Direction.Straight, 1.0f, startTime, endTime) { }
示例8: SetStart
public void SetStart(SyncPoint start)
{
if (start !=SyncPoint.Null) this.startTime = start;
}
示例9: SetEnd
public void SetEnd(SyncPoint end)
{
if (end != SyncPoint.Null) this.endTime = end;
}
示例10: BMLHeadToAction
private Actions.Head BMLHeadToAction(Head head)
{
string id = "";
if (head.id != null) id = head.id;
string lexeme = "";
if (head.lexemeSpecified) lexeme = head.lexeme.ToString();
Actions.SyncPoint startPoint = Actions.SyncPoint.Null;
if (head.start != null && head.start != "") startPoint = new Actions.SyncPoint(head.start);
Actions.SyncPoint endPoint = Actions.SyncPoint.Null;
if (head.end != null && head.end != "") endPoint = new Actions.SyncPoint(head.end);
return new Actions.Head(id, lexeme, head.repetition, startPoint, endPoint);
}