當前位置: 首頁>>代碼示例>>C#>>正文


C# Actions.SyncPoint類代碼示例

本文整理匯總了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;
 }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:7,代碼來源:Head.cs

示例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;
 }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:8,代碼來源:Sound.cs

示例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 { }
     }
 }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:24,代碼來源:Locomotion.cs

示例4: PostureShift

 public PostureShift(SyncPoint startTime, SyncPoint endTime) : this("PostureShift" + Counter++, startTime, endTime) { }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:1,代碼來源:PostureShift.cs

示例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);
		}
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:13,代碼來源:BehaviorManager.cs

示例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);
		}
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:19,代碼來源:BehaviorManager.cs

示例7: Gaze

 public Gaze(double offsetAngle, SyncPoint startTime, SyncPoint endTime) : this("Gaze" + Counter++, "", GazeInfluence.Eyes, offsetAngle, Direction.Straight, 1.0f, startTime, endTime) { }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:1,代碼來源:Gaze.cs

示例8: SetStart

 public void SetStart(SyncPoint start)
 {
     if (start !=SyncPoint.Null) this.startTime = start;
 }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:4,代碼來源:Gaze.cs

示例9: SetEnd

            public void SetEnd(SyncPoint end)
            {
				if (end != SyncPoint.Null) this.endTime = end;
            }
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:4,代碼來源:Gaze.cs

示例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);
		}
開發者ID:emote-project,項目名稱:Scenario1,代碼行數:15,代碼來源:BehaviorManager.cs


注:本文中的Thalamus.Actions.SyncPoint類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。