@@ -1327,12 +1327,24 @@ public void SendQueuedSetControlPropertyUpdates()
1327
1327
jsonWriter . WriteStartObject ( ) ;
1328
1328
jsonWriter . WritePropertyName ( WS_MESSAGE_KEY_CONTROL_ID ) ;
1329
1329
jsonWriter . WriteValue ( controlID ) ;
1330
- Dictionary < string , object > controlPropertyData = _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties ;
1330
+ Dictionary < string , InternalControlPropertyMetaData > controlPropertyData = _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties ;
1331
1331
var controlPropertyDataKeys = controlPropertyData . Keys ;
1332
1332
foreach ( string controlPropertyDataKey in controlPropertyDataKeys )
1333
1333
{
1334
1334
jsonWriter . WritePropertyName ( controlPropertyDataKey ) ;
1335
- jsonWriter . WriteValue ( controlPropertyData [ controlPropertyDataKey ] . ToString ( ) ) ;
1335
+ InternalControlPropertyMetaData controlPropertyMetaData = controlPropertyData [ controlPropertyDataKey ] ;
1336
+ if ( controlPropertyMetaData . type == KnownControlPropertyPrimitiveTypes . Boolean )
1337
+ {
1338
+ jsonWriter . WriteValue ( controlPropertyMetaData . boolValue ) ;
1339
+ }
1340
+ else if ( controlPropertyMetaData . type == KnownControlPropertyPrimitiveTypes . Number )
1341
+ {
1342
+ jsonWriter . WriteValue ( controlPropertyMetaData . numberValue ) ;
1343
+ }
1344
+ else
1345
+ {
1346
+ jsonWriter . WriteValue ( controlPropertyMetaData . stringValue ) ;
1347
+ }
1336
1348
}
1337
1349
jsonWriter . WriteEndObject ( ) ;
1338
1350
}
@@ -3868,12 +3880,33 @@ private void UpdateInternalTextBoxState(InteractiveTextEventArgs e)
3868
3880
_textboxValuesByParticipant [ e . Participant . UserID ] [ e . ControlID ] = text ;
3869
3881
}
3870
3882
3871
- internal void QueuePropertyUpdate ( string sceneID , string controlID , string name , object value )
3883
+ internal void _QueuePropertyUpdate ( string sceneID , string controlID , string name , bool value )
3884
+ {
3885
+ KnownControlPropertyPrimitiveTypes type = KnownControlPropertyPrimitiveTypes . Boolean ;
3886
+ _QueuePropertyUpdateImpl ( sceneID , controlID , name , type , value ) ;
3887
+ }
3888
+ internal void _QueuePropertyUpdate ( string sceneID , string controlID , string name , double value )
3889
+ {
3890
+ KnownControlPropertyPrimitiveTypes type = KnownControlPropertyPrimitiveTypes . Number ;
3891
+ _QueuePropertyUpdateImpl ( sceneID , controlID , name , type , value ) ;
3892
+ }
3893
+ internal void _QueuePropertyUpdate ( string sceneID , string controlID , string name , string value )
3894
+ {
3895
+ KnownControlPropertyPrimitiveTypes type = KnownControlPropertyPrimitiveTypes . String ;
3896
+ _QueuePropertyUpdateImpl ( sceneID , controlID , name , type , value ) ;
3897
+ }
3898
+ internal void _QueuePropertyUpdate ( string sceneID , string controlID , string name , object value )
3899
+ {
3900
+ KnownControlPropertyPrimitiveTypes type = KnownControlPropertyPrimitiveTypes . Unknown ;
3901
+ _QueuePropertyUpdateImpl ( sceneID , controlID , name , type , value ) ;
3902
+ }
3903
+
3904
+ internal void _QueuePropertyUpdateImpl ( string sceneID , string controlID , string name , KnownControlPropertyPrimitiveTypes type , object value )
3872
3905
{
3873
3906
// If a scene entry doesn't exist, add one.
3874
3907
if ( ! _queuedControlPropertyUpdates . ContainsKey ( sceneID ) )
3875
3908
{
3876
- InternalControlPropertyUpdateData controlPropertyData = new InternalControlPropertyUpdateData ( name , value ) ;
3909
+ InternalControlPropertyUpdateData controlPropertyData = new InternalControlPropertyUpdateData ( name , type , value ) ;
3877
3910
Dictionary < string , InternalControlPropertyUpdateData > controlData = new Dictionary < string , InternalControlPropertyUpdateData > ( ) ;
3878
3911
controlData . Add ( controlID , controlPropertyData ) ;
3879
3912
_queuedControlPropertyUpdates . Add ( sceneID , controlData ) ;
@@ -3884,20 +3917,34 @@ internal void QueuePropertyUpdate(string sceneID, string controlID, string name,
3884
3917
Dictionary < string , InternalControlPropertyUpdateData > controlData = _queuedControlPropertyUpdates [ sceneID ] ;
3885
3918
if ( ! controlData . ContainsKey ( controlID ) )
3886
3919
{
3887
- InternalControlPropertyUpdateData controlPropertyData = new InternalControlPropertyUpdateData ( name , value ) ;
3920
+ InternalControlPropertyUpdateData controlPropertyData = new InternalControlPropertyUpdateData ( name , type , value ) ;
3888
3921
_queuedControlPropertyUpdates [ sceneID ] . Add ( controlID , controlPropertyData ) ;
3889
3922
}
3890
3923
else
3891
3924
{
3892
3925
// Control entry exists, but does property entry exist?
3893
3926
InternalControlPropertyUpdateData controlPropertyData = controlData [ controlID ] ;
3927
+ InternalControlPropertyMetaData controlPropertyMetaData = new InternalControlPropertyMetaData ( ) ;
3928
+ controlPropertyMetaData . type = type ;
3929
+ if ( type == KnownControlPropertyPrimitiveTypes . Boolean )
3930
+ {
3931
+ controlPropertyMetaData . boolValue = ( bool ) value ;
3932
+ }
3933
+ else if ( type == KnownControlPropertyPrimitiveTypes . Number )
3934
+ {
3935
+ controlPropertyMetaData . numberValue = ( double ) value ;
3936
+ }
3937
+ else
3938
+ {
3939
+ controlPropertyMetaData . stringValue = value . ToString ( ) ;
3940
+ }
3894
3941
if ( ! controlPropertyData . properties . ContainsKey ( name ) )
3895
3942
{
3896
- _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties . Add ( name , value ) ;
3943
+ _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties . Add ( name , controlPropertyMetaData ) ;
3897
3944
}
3898
3945
else
3899
3946
{
3900
- _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties [ name ] = value ;
3947
+ _queuedControlPropertyUpdates [ sceneID ] [ controlID ] . properties [ name ] = controlPropertyMetaData ;
3901
3948
}
3902
3949
}
3903
3950
}
@@ -3985,14 +4032,53 @@ internal struct InternalButtonState
3985
4032
3986
4033
internal struct InternalControlPropertyUpdateData
3987
4034
{
3988
- internal Dictionary < string , object > properties ;
3989
- public InternalControlPropertyUpdateData ( string name , object value )
4035
+ internal Dictionary < string , InternalControlPropertyMetaData > properties ;
4036
+ public InternalControlPropertyUpdateData ( string name , KnownControlPropertyPrimitiveTypes type , object value )
3990
4037
{
3991
- properties = new Dictionary < string , object > ( ) ;
3992
- properties . Add ( name , value ) ;
4038
+ properties = new Dictionary < string , InternalControlPropertyMetaData > ( ) ;
4039
+ InternalControlPropertyMetaData typeData = new InternalControlPropertyMetaData ( ) ;
4040
+ typeData . type = type ;
4041
+ // This should never fail, but just in case.
4042
+ try
4043
+ {
4044
+ if ( type == KnownControlPropertyPrimitiveTypes . Boolean )
4045
+ {
4046
+ typeData . boolValue = ( bool ) value ;
4047
+ }
4048
+ else if ( type == KnownControlPropertyPrimitiveTypes . Number )
4049
+ {
4050
+ typeData . numberValue = ( double ) value ;
4051
+ }
4052
+ else
4053
+ {
4054
+ typeData . stringValue = value . ToString ( ) ;
4055
+ }
4056
+ }
4057
+ catch ( Exception ex )
4058
+ {
4059
+ InteractivityManager . SingletonInstance . LogError ( "Failed to cast the value to a known type. Exception: " + ex . Message ) ;
4060
+ }
4061
+ properties . Add ( name , typeData ) ;
3993
4062
}
3994
4063
}
3995
4064
4065
+ internal struct InternalControlPropertyMetaData
4066
+ {
4067
+ public object objectValue ;
4068
+ public bool boolValue ;
4069
+ public double numberValue ;
4070
+ public string stringValue ;
4071
+ public KnownControlPropertyPrimitiveTypes type ;
4072
+ }
4073
+
4074
+ internal enum KnownControlPropertyPrimitiveTypes
4075
+ {
4076
+ Unknown ,
4077
+ Boolean ,
4078
+ Number ,
4079
+ String
4080
+ }
4081
+
3996
4082
internal struct InternalJoystickState
3997
4083
{
3998
4084
internal double X ;
0 commit comments