Exemple #1
0
		private void BindToRegistry(IDynamicPropertiesRegistry registry)
		{
			registry.RegistDynamicProperty(COUNT_TEMPLATE_NEW, CountPropertyCalculator_new);
			registry.RegistDynamicProperty(HAS_LITERAL_TEMPLATE,HasLiteralPropertyCalculator);
            registry.RegistDynamicProperty(MATH_TEMPLATE, MathPropertyCalculator);
            registry.RegistDynamicProperty(SQUARE_DISTANCE, SquareDistanceCalculator);
        }
Exemple #2
0
 private void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(COUNT_DP_NAME, COUNT_DP_DESC, CountPropertyCalculator_new);
     registry.RegistDynamicProperty(HAS_LITERAL_DP_NAME, HAS_LITERAL_DP_DESC, HasLiteralPropertyCalculator);
     registry.RegistDynamicProperty(MATH_DP_NAME, MATH_DP_DESC, MathPropertyCalculator);
     registry.RegistDynamicProperty(SQUARE_DISTANCE_NAME, SQUARE_DISTANCE_DESC, SquareDistanceCalculator);
     registry.RegistDynamicProperty(ASK_DP_NAME, ASK_DP_DESC, AskDynamicProperty);
     registry.RegistDynamicProperty(TELL_DP_NAME, TELL_DP_DESC, TellDynamicProperty);
     registry.RegistDynamicProperty(EXISTS_DP_NAME, EXISTS_DP_DESC, ExistsDynamicProperty);
 }
Exemple #3
0
 public void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(RPCConsts.MOOD_PROPERTY_NAME, "", MoodPropertyCalculator);
     registry.RegistDynamicProperty(RPCConsts.STRONGEST_EMOTION_PROPERTY_NAME, "", StrongestEmotionCalculator);
     registry.RegistDynamicProperty(RPCConsts.STRONGEST_EMOTION_FOR_EVENT_PROPERTY_NAME, "", StrongestEmotionForEventCalculator);
     registry.RegistDynamicProperty(RPCConsts.STRONGEST_WELL_BEING_EMOTION_PROPERTY_NAME, "",
                                    StrongestWellBeingEmotionCalculator);
     registry.RegistDynamicProperty(RPCConsts.STRONGEST_ATTRIBUTION_PROPERTY_NAME, "",
                                    StrongestAttributionEmotionCalculator);
     registry.RegistDynamicProperty(RPCConsts.STRONGEST_COMPOUND_PROPERTY_NAME, "",
                                    StrongestCompoundEmotionCalculator);
     registry.RegistDynamicProperty(EMOTION_INTENSITY_DP_NAME, EMOTION_INTENSITY_DP_DESC, EmotionIntensityPropertyCalculator);
     registry.RegistDynamicProperty(IS_AGENT_DP_NAME, IS_AGENT_DP_NAME_DESC, IsAgentPropertyCalculator);
     registry.RegistDynamicProperty(ROUND_TO_TENS_DP_NAME, ROUND_TO_TENS_DP_DESC, RoundtoTensMethodCalculator);
     registry.RegistDynamicProperty(ROUND_DP_NAME, ROUND_DP_DESC, RoundMethodCalculator);
     registry.RegistDynamicProperty(RANDOM_DP_NAME, RANDOM_DP_DESC, RandomCalculator);
     registry.RegistDynamicProperty(ID_SALIENT_DP_NAME, ID_SALIENT_DP_DESC, IsSalientPropertyCalculator);
     m_am.BindToRegistry(registry);
 }
Exemple #4
0
 public void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(VALID_DIALOGUE_PROPERTY_TEMPLATE, ValidDialogPropertyCalculator);
 }
 public void UnbindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.UnregistDynamicProperty((Name)"SI([target])");
 }
 private void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(SI_DYNAMIC_PROPERTY_NAME, "", SIPropertyCalculator);
 }
Exemple #7
0
 public void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(EVENT_ID_PROPERTY_NAME, "", EventIdPropertyCalculator);
     registry.RegistDynamicProperty(EVENT_ELAPSED_TIME_PROPERTY_NAME, "", EventAgePropertyCalculator);
     registry.RegistDynamicProperty(LAST_EVENT_ID_PROPERTY_NAME, "", LastEventIdPropertyCalculator);
 }
Exemple #8
0
 public void UnbindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.UnregistDynamicProperty(MCTS_DYNAMIC_PROPERTY_NAME);
 }
Exemple #9
0
 private void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(MCTS_DYNAMIC_PROPERTY_NAME, MCTSSearch);
 }
Exemple #10
0
 public void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(VOLITION_PROPERTY_TEMPLATE, VolitionPropertyCalculator);
 }
Exemple #11
0
 public void UnbindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.UnregistDynamicProperty((Name)"Volition");
 }
Exemple #12
0
 public void BindToRegistry(IDynamicPropertiesRegistry registry)
 {
     registry.RegistDynamicProperty(WORKING_MEMORY_ID_PROPERTY_NAME, WorkingMemoryProperty);
 }