1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "dme_controls/attributeslider.h"
#include "materialsystem/imesh.h"
#include "movieobjects/dmeanimationset.h"
#include "vgui/IInput.h"
#include "vgui/ISurface.h"
#include "vgui_controls/TextEntry.h"
#include "vgui_controls/TextImage.h"
#include "vgui_controls/subrectimage.h"
#include "vgui_controls/CheckButton.h"
#include "dme_controls/BaseAnimSetAttributeSliderPanel.h"
#include "dme_controls/BaseAnimationSetEditor.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
using namespace vgui;
//-----------------------------------------------------------------------------
// Enums
//-----------------------------------------------------------------------------
#define SLIDER_PIXEL_SPACING 3
#define CIRCULAR_CONTROL_RADIUS 6.0f
#define UNDO_CHAIN_MOUSEWHEEL_ATTRIBUTE_SLIDER 9876
#define FRAC_PER_PIXEL 0.0025f
#define ANIM_SET_ATTRIBUTE_SLIDER_BALANCE_INSET 30
#define ANIM_SET_ATTRIBUTE_SLIDER_LEFT_BORDER 5
#define ANIM_SET_ATTRIBUTE_SLIDER_GRAPH_BUTTON_WIDTH 16
#define ANIM_SET_ATTRIBUTE_SLIDER_MULTILEVEL_INSET 30
static ConVar ifm_attributeslider_sensitivity( "ifm_attributeslider_sensitivity", "3.0", 0 );
//-----------------------------------------------------------------------------
// Globals
//-----------------------------------------------------------------------------
static Color s_TextColor( 200, 200, 200, 192 );
static Color s_TextColorFocus( 208, 143, 40, 192 );
// NOTE: Index with [preview][selected]
static Color s_BarColor[2][2] =
{
{ Color( 45, 45, 45, 255 ), Color( 150, 80, 0, 255 ) },
{ Color( 30, 255, 255, 80 ), Color( 30, 180, 255, 255 ) }
};
static Color s_ZeroColor[2][2] =
{
{ Color( 33, 33, 33, 255 ), Color( 0, 255, 255, 60 ) },
{ Color( 100, 80, 0, 255 ), Color( 0, 180, 255, 255 ) }
};
static Color s_DraggingBarColor( 142, 142, 142, 255 );
static Color s_PreviewTickColor( 255, 164, 8, 255 );
static Color s_OldValueTickColor( 100, 100, 100, 63 );
static Color s_MidpointColor( 115, 115, 115, 255 );
//-----------------------------------------------------------------------------
// Blends flex values in left-right space instead of balance/value space
//-----------------------------------------------------------------------------
static void BlendFlexValues( AttributeValue_t *pResult, const AttributeValue_t &src, const AttributeValue_t &dest, float flBlend, float flBalanceFilter = 0.5f )
{
// Apply the left-right balance to the target
float flLeftFilter, flRightFilter;
ValueBalanceToLeftRight( &flLeftFilter, &flRightFilter, flBlend, flBalanceFilter );
// Do the math in 'left-right' space because we filter in that space
float flSrcLeft, flSrcRight;
ValueBalanceToLeftRight( &flSrcLeft, &flSrcRight, src.m_pValue[ANIM_CONTROL_VALUE], src.m_pValue[ANIM_CONTROL_BALANCE] );
float flDestLeft, flDestRight;
ValueBalanceToLeftRight( &flDestLeft, &flDestRight, dest.m_pValue[ANIM_CONTROL_VALUE], dest.m_pValue[ANIM_CONTROL_BALANCE] );
float flTargetLeft = flSrcLeft + flLeftFilter * ( flDestLeft - flSrcLeft );
float flTargetRight = flSrcRight + flRightFilter * ( flDestRight - flSrcRight );
LeftRightToValueBalance( &pResult->m_pValue[ANIM_CONTROL_VALUE], &pResult->m_pValue[ANIM_CONTROL_BALANCE], flTargetLeft, flTargetRight,
( flBlend <= 0.5f ) ? src.m_pValue[ANIM_CONTROL_BALANCE] : dest.m_pValue[ANIM_CONTROL_BALANCE] );
pResult->m_pValue[ANIM_CONTROL_MULTILEVEL] = src.m_pValue[ANIM_CONTROL_MULTILEVEL] + ( dest.m_pValue[ANIM_CONTROL_MULTILEVEL] - src.m_pValue[ANIM_CONTROL_MULTILEVEL] ) * flBlend;
}
//-----------------------------------------------------------------------------
// The panel used to do text entry when double-clicking in the slider
//-----------------------------------------------------------------------------
class CAttributeSliderTextEntry : public TextEntry
{
DECLARE_CLASS_SIMPLE( CAttributeSliderTextEntry, TextEntry );
public:
CAttributeSliderTextEntry( CAttributeSlider *slider, const char *panelName ) :
BaseClass( (Panel *)slider, panelName ), m_pSlider( slider )
{
Assert( m_pSlider );
}
MESSAGE_FUNC_PARAMS( OnKillFocus, "KillFocus", kv );
virtual void OnMouseWheeled( int delta );
private:
CAttributeSlider *m_pSlider;
};
//-----------------------------------------------------------------------------
//
// CAttributeSlider begins here
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Constructor, destructor
//-----------------------------------------------------------------------------
CAttributeSlider::CAttributeSlider( CBaseAnimSetAttributeSliderPanel *parent, const char *panelName, CDmElement *pControl ) :
BaseClass( (Panel *)parent, panelName ),
m_pParent( parent ),
m_pWhite( NULL ),
m_bPreviewEnabled( false ),
m_bSimplePreviewOnly( true ),
m_bCursorInsidePanel( false ),
m_flPreviewGoalTime( -1.0f ),
m_bRampUp( false ),
m_bFaderBeingDragged( false ),
m_flFaderAmount( 1.0f ),
m_bIsLogPreviewControl( false ),
m_bSelected( false ),
m_pRightTextField( 0 )
{
m_SliderMode = SLIDER_MODE_NONE;
m_hControl = pControl;
// Cache off control information since this state should never change
// NOTE: If it ever does, just change the implementations of
// IsTransform + GetMidpoint to always read these values from the attributes
m_bTransform = pControl->GetValue< bool >( "transform" );
m_nDragStartPosition[ 0 ] = m_nDragStartPosition[ 1 ] = 0;
m_nAccum[ 0 ] = m_nAccum[ 1 ] = 0;
m_flDragStartValue = 1.0f;
m_flDragStartBalance = 0.5f;
SetPaintBackgroundEnabled( true );
m_pName = new TextImage( panelName );
m_pValues[ 0 ] = new TextImage( "" );
m_pValues[ 1 ] = new TextImage( "" );
m_pValues[ 2 ] = new TextImage( "" );
m_pCircleImage = new CSubRectImage( "tools/ifm/icon_balance", false, 7, 8, 19, 15 );
// Allocate a white material
KeyValues *pVMTKeyValues = new KeyValues( "UnlitGeneric" );
pVMTKeyValues->SetInt( "$vertexcolor", 1 );
pVMTKeyValues->SetInt( "$vertexalpha", 1 );
pVMTKeyValues->SetInt( "$ignorez", 1 );
pVMTKeyValues->SetInt( "$no_fullbright", 1 );
pVMTKeyValues->SetInt( "$nocull", 1 );
m_pWhite.Init( "AttributeSlider_White", NULL, pVMTKeyValues );
SetBgColor( Color( 42, 42, 42, 255 ) );
m_bIsControlActive[ANIM_CONTROL_VALUE] = true;
m_bIsControlActive[ANIM_CONTROL_BALANCE] = false;
m_bIsControlActive[ANIM_CONTROL_MULTILEVEL] = false;
m_pTextField = new CAttributeSliderTextEntry( this, panelName );
m_pTextField->SetVisible( false );
m_pTextField->SetEnabled( false );
m_pTextField->SelectAllOnFocusAlways( true );
SetPaintBorderEnabled( false );
}
CAttributeSlider::~CAttributeSlider()
{
m_pWhite.Shutdown();
delete m_pCircleImage;
delete m_pName;
delete m_pValues[ 0 ];
delete m_pValues[ 1 ];
delete m_pValues[ 2 ];
}
//-----------------------------------------------------------------------------
// Scheme
//-----------------------------------------------------------------------------
void CAttributeSlider::ApplySchemeSettings( IScheme *scheme )
{
BaseClass::ApplySchemeSettings( scheme );
m_pName->SetFont( scheme->GetFont( "Default" ) );
m_pName->SetColor( s_TextColor );
m_pName->ResizeImageToContent();
m_pValues[ 0 ]->SetColor( s_TextColor );
m_pValues[ 0 ]->SetFont( scheme->GetFont( "Default" ) );
m_pValues[ 1 ]->SetColor( s_TextColorFocus );
m_pValues[ 1 ]->SetFont( scheme->GetFont( "Default" ) );
m_pValues[ 2 ]->SetColor( s_TextColor );
m_pValues[ 2 ]->SetFont( scheme->GetFont( "Default" ) );
m_pCircleImage->SetColor( Color( 255, 255, 255, 255 ) );
SetBgColor( Color( 42, 42, 42, 255 ) );
SetFgColor( Color( 194, 120, 0, 255 ) );
}
//-----------------------------------------------------------------------------
// Gets/sets the slider value.
// NOTE: This may not match the value pushed into the control because of fading
//-----------------------------------------------------------------------------
static const char *s_pChangeMessage[ANIM_CONTROL_COUNT] =
{
"SliderMoved",
"BalanceChanged",
"MultiLevelChanged",
};
static const char *s_pChangeKeyValue[ANIM_CONTROL_COUNT] =
{
"position",
"balance",
"level",
};
void CAttributeSlider::ActivateControl( AnimationControlType_t type, bool bActive )
{
if ( m_bIsControlActive[type] != bActive )
{
m_bIsControlActive[type] = bActive;
if ( bActive )
{
PostActionSignal( new KeyValues( s_pChangeMessage[type], s_pChangeKeyValue[type], m_Control.m_pValue[type] ) );
}
}
}
bool CAttributeSlider::IsControlActive( AnimationControlType_t type )
{
return m_bIsControlActive[type];
}
void CAttributeSlider::SetValue( AnimationControlType_t type, float flValue )
{
if ( m_Control.m_pValue[type] != flValue )
{
m_Control.m_pValue[type] = flValue;
if ( m_bIsControlActive[type] )
{
PostActionSignal( new KeyValues( s_pChangeMessage[type], s_pChangeKeyValue[type], flValue ) );
}
}
}
void CAttributeSlider::SetValue( const AttributeValue_t& value )
{
for ( int i = 0; i < ANIM_CONTROL_COUNT; ++i )
{
SetValue( (AnimationControlType_t)i, value.m_pValue[i] );
}
}
float CAttributeSlider::GetValue( AnimationControlType_t type ) const
{
return m_Control.m_pValue[type];
}
const AttributeValue_t& CAttributeSlider::GetValue() const
{
return m_Control;
}
//-----------------------------------------------------------------------------
// Returns the default value for the control
//-----------------------------------------------------------------------------
float CAttributeSlider::GetControlDefaultValue( AnimationControlType_t type ) const
{
if ( IsTransform() )
return 0.0f;
Assert( m_hControl.Get() );
if ( !m_hControl.Get() )
return 0.0f;
switch ( type )
{
case ANIM_CONTROL_VALUE:
return m_hControl->GetValue<float>( "defaultValue" );
case ANIM_CONTROL_BALANCE:
return m_hControl->GetValue<float>( "defaultBalance" );
case ANIM_CONTROL_MULTILEVEL:
return m_hControl->GetValue<float>( "defaultMultilevel" );
}
return 0.0f;
}
//-----------------------------------------------------------------------------
// Given a mouse position in (x,y) in local coordinates, which animation control is it over?
//-----------------------------------------------------------------------------
AnimationControlType_t CAttributeSlider::DetermineControl( int x, int y )
{
if ( IsControlActive( ANIM_CONTROL_MULTILEVEL ) )
{
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_MULTILEVEL );
if ( x >= rect.x && x < rect.x + rect.width && y >= rect.y && y < rect.y + rect.height )
return ANIM_CONTROL_MULTILEVEL;
}
return ANIM_CONTROL_VALUE;
}
void CAttributeSlider::SetSelected( bool state )
{
m_bSelected = state;
}
bool CAttributeSlider::IsSelected() const
{
return m_bSelected;
}
void CAttributeSlider::SetIsLogPreviewControl( bool state )
{
m_bIsLogPreviewControl = state;
}
void CAttributeSlider::OnCursorEntered()
{
BaseClass::OnCursorEntered();
m_bCursorInsidePanel = true;
}
void CAttributeSlider::OnCursorExited()
{
BaseClass::OnCursorExited();
m_bCursorInsidePanel = false;
}
//-----------------------------------------------------------------------------
// Mouse event handlers
//-----------------------------------------------------------------------------
void CAttributeSlider::OnMousePressed( MouseCode code )
{
if ( !IsEnabled() || IsInTextEntry() || IsDragging() )
return;
// Deal with transform sliders
if ( m_bTransform )
{
bool bCtrlDown = ( input()->IsKeyDown( KEY_LCONTROL ) || input()->IsKeyDown( KEY_RCONTROL ) );
m_pParent->SetLogPreviewControl( m_hControl );
if ( !bCtrlDown )
{
m_pParent->ClearSelectedControls();
}
m_pParent->SetControlSelected( this, !IsSelected() );
return;
}
// Determine which control we clicked on
int x,y;
input()->GetCursorPosition( x, y );
ScreenToLocal( x, y );
AnimationControlType_t type = DetermineControl( x, y );
// Right click sets the value to match the default value
if ( code == MOUSE_RIGHT )
{
SetValue( type, GetControlDefaultValue( type ) );
CUndoScopeGuard guard( "Set Slider Value To Default" );
StampValueIntoLogs( type, GetControlDefaultValue( type ) );
return;
}
if ( code != MOUSE_LEFT )
return;
// Cache off the value at the click point
// in case we end up receiving a double-click
m_InitialTextEntryValue = m_Control;
// Enter drag mode
m_SliderMode = (SliderMode_t)( SLIDER_MODE_FIRST_DRAG_MODE + type );
m_nDragStartPosition[ 0 ] = x;
m_nDragStartPosition[ 1 ] = y;
m_nAccum[ 0 ] = m_nAccum[ 1 ] = 0;
m_flDragStartValue = GetValue( type );
m_flDragStartBalance = GetValue( ANIM_CONTROL_BALANCE );
input()->SetMouseCapture( GetVPanel() );
SetCursor( dc_blank );
m_pParent->RecomputePreview();
}
void CAttributeSlider::OnCursorMoved( int x, int y )
{
if ( !IsEnabled() || !IsDragging() || m_bTransform )
return;
// NOTE: This works because we always slam the mouse to be back at the start position
// at the end of this function
// Accumulate the total mouse movement
int dx = x - m_nDragStartPosition[ 0 ];
m_nAccum[ 0 ] += dx;
float flFactor = FRAC_PER_PIXEL * ifm_attributeslider_sensitivity.GetFloat();
bool bInRecordMode = m_pParent->GetEditor()->GetRecordingState() == AS_RECORD;
float flMinVal = bInRecordMode ? -1.0f : 0.0f;
float flMaxVal = bInRecordMode ? 2.0f : 1.0f;
// Clamp accum so we never generate values < -1 or > 2
int nMinVal = floor( ( -m_flDragStartValue + flMinVal ) / flFactor );
int nMaxVal = ceil( ( -m_flDragStartValue + flMaxVal ) / flFactor );
m_nAccum[ 0 ] = clamp( m_nAccum[ 0 ], nMinVal, nMaxVal );
float flDelta = flFactor * m_nAccum[ 0 ];
if ( GetDragControl() == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
// do the hacky conversion from the ui's left/right to the underlying value/balance
float flLeftValue, flRightValue;
ValueBalanceToLeftRight( &flLeftValue, &flRightValue, m_flDragStartValue, m_flDragStartBalance );
float flLeftDelta, flRightDelta;
ValueBalanceToLeftRight( &flLeftDelta, &flRightDelta, flDelta, m_pParent->GetBalanceSliderValue() );
flLeftValue = clamp( flLeftValue + flLeftDelta, flMinVal, flMaxVal );
flRightValue = clamp( flRightValue + flRightDelta, flMinVal, flMaxVal );
float flValue, flBalance;
LeftRightToValueBalance( &flValue, &flBalance, flLeftValue, flRightValue );
SetValue( GetDragControl(), flValue );
SetValue( ANIM_CONTROL_BALANCE, flBalance ); // TODO - add balance for multi control as well
}
else
{
float flValue = clamp( m_flDragStartValue + flDelta, flMinVal, flMaxVal );
SetValue( GetDragControl(), flValue );
}
// Slam the cursor back to the drag start point
if ( x != m_nDragStartPosition[ 0 ] || y != m_nDragStartPosition[ 1 ] )
{
x = m_nDragStartPosition[ 0 ];
y = m_nDragStartPosition[ 1 ];
LocalToScreen( x, y );
input()->SetCursorPos( x, y );
}
}
void CAttributeSlider::OnMouseReleased( MouseCode code )
{
if ( !IsEnabled() || !IsDragging() || m_bTransform )
return;
m_SliderMode = SLIDER_MODE_NONE;
input()->SetMouseCapture( NULL );
SetCursor( dc_arrow );
m_pParent->RecomputePreview();
}
//-----------------------------------------------------------------------------
//
// Methods related to text entry mode
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Called by the text entry code to enter the value into the logs
//-----------------------------------------------------------------------------
void CAttributeSlider::StampValueIntoLogs( AnimationControlType_t type, float flValue )
{
Assert( !m_bTransform );
m_pParent->StampValueIntoLogs( m_hControl, type, flValue );
}
//-----------------------------------------------------------------------------
// Key typed key handler
//-----------------------------------------------------------------------------
void CAttributeSlider::OnKeyCodeTyped( KeyCode code )
{
if ( !IsInTextEntry() )
{
BaseClass::OnKeyCodeTyped( code );
return;
}
switch ( code )
{
default:
BaseClass::OnKeyCodeTyped( code );
break;
case KEY_ESCAPE:
DiscardTextEntryValue();
break;
case KEY_ENTER:
AcceptTextEntryValue();
break;
}
}
//-----------------------------------------------------------------------------
// Methods to entry text entry mode
//-----------------------------------------------------------------------------
void CAttributeSlider::EnterTextEntryMode( AnimationControlType_t type, bool bRelatchValues )
{
if ( m_bTransform )
return;
m_SliderMode = (SliderMode_t)( SLIDER_MODE_FIRST_TEXT_MODE + type );
// For double-clicking, ignore the value set by the first single mouse click
if ( !bRelatchValues )
{
SetValue( m_InitialTextEntryValue );
}
m_pTextField->SetVisible( true );
m_pTextField->SetEnabled( true );
if ( type == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
if ( !m_pRightTextField )
{
m_pRightTextField = new CAttributeSliderTextEntry( this, GetName() );
m_pRightTextField->SetVisible( false );
m_pRightTextField->SetEnabled( false );
m_pRightTextField->SelectAllOnFocusAlways( true );
InvalidateLayout();
}
m_pRightTextField->SetVisible( true );
m_pRightTextField->SetEnabled( true );
float flValue = m_InitialTextEntryValue.m_pValue[ ANIM_CONTROL_VALUE ];
float flBalance = m_InitialTextEntryValue.m_pValue[ ANIM_CONTROL_BALANCE ];
float flLeftValue, flRightValue;
ValueBalanceToLeftRight( &flLeftValue, &flRightValue, flValue, flBalance );
char val[ 64 ];
V_snprintf( val, sizeof( val ), "%f", flLeftValue );
m_pTextField->SetText( val );
V_snprintf( val, sizeof( val ), "%f", flRightValue );
m_pRightTextField->SetText( val );
m_pRightTextField->GotoTextEnd();
m_pRightTextField->RequestFocus();
}
else
{
char val[ 64 ];
Q_snprintf( val, sizeof( val ), "%f", m_InitialTextEntryValue.m_pValue[ type ] );
m_pTextField->SetText( val );
}
m_pTextField->GotoTextEnd();
m_pTextField->RequestFocus();
}
//-----------------------------------------------------------------------------
// Methods to accept or discard the value in the text entry field
//-----------------------------------------------------------------------------
void CAttributeSlider::AcceptTextEntryValue()
{
if ( !IsInTextEntry() )
return;
Assert( !m_bTransform );
// Get the value in the text entry field
char buf[ 64 ];
m_pTextField->GetText( buf, sizeof( buf ) );
float flValue = Q_atof( buf );
// Hide the text entry
m_pTextField->SetVisible( false );
m_pTextField->SetEnabled( false );
if ( m_pRightTextField && GetTextEntryControl() == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
float flLeftValue = flValue;
// Get the value in the text entry field
buf[0] = 0;
m_pRightTextField->GetText( buf, sizeof( buf ) );
float flRightValue = Q_atof( buf );
// Hide the text entry
m_pRightTextField->SetVisible( false );
m_pRightTextField->SetEnabled( false );
float flBalance;
LeftRightToValueBalance( &flValue, &flBalance, flLeftValue, flRightValue );
SetValue( ANIM_CONTROL_BALANCE, flBalance );
StampValueIntoLogs( ANIM_CONTROL_BALANCE, flBalance );
}
// Apply the change
AnimationControlType_t type = GetTextEntryControl();
SetValue( type, flValue );
StampValueIntoLogs( type, flValue );
m_SliderMode = SLIDER_MODE_NONE;
RequestFocus();
}
void CAttributeSlider::DiscardTextEntryValue()
{
if ( !IsInTextEntry() )
return;
Assert( !m_bTransform );
// Hide the text entry
m_pTextField->SetVisible( false );
m_pTextField->SetEnabled( false );
if ( m_pRightTextField && GetTextEntryControl() == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
m_pRightTextField->SetVisible( false );
m_pRightTextField->SetEnabled( false );
}
m_SliderMode = SLIDER_MODE_NONE;
RequestFocus();
}
//-----------------------------------------------------------------------------
// Methods of the text entry widget
//-----------------------------------------------------------------------------
void CAttributeSliderTextEntry::OnKillFocus( KeyValues *pParams )
{
Assert( m_pSlider );
SelectNone();
VPANEL hPanel = (VPANEL)pParams->GetPtr( "newPanel" );
if ( hPanel != INVALID_PANEL && vgui::ipanel()->GetParent( hPanel ) == m_pSlider->GetVPanel() )
return;
m_pSlider->AcceptTextEntryValue();
}
void CAttributeSliderTextEntry::OnMouseWheeled( int delta )
{
if ( m_pSlider->m_bTransform )
return;
float deltaFactor;
if ( input()->IsKeyDown(KEY_LSHIFT) )
{
deltaFactor = ((float)delta) * 10.0f;
}
else if ( input()->IsKeyDown(KEY_LCONTROL) )
{
deltaFactor = ((float)delta) / 100.0;
}
else
{
deltaFactor = ((float)delta) / 10.0;
}
char sz[ 64 ];
GetText( sz, sizeof( sz ) );
float val = Q_atof( sz ) + deltaFactor;
if ( input()->IsKeyDown(KEY_LALT) )
{
val = clamp( val, 0.0f, 1.0f );
}
Q_snprintf( sz, sizeof( sz ), "%f", val );
SetText( sz );
m_pSlider->SetValue( ANIM_CONTROL_VALUE, val );
CUndoScopeGuard guard( UNDO_CHAIN_MOUSEWHEEL_ATTRIBUTE_SLIDER, "Set Slider Value" );
m_pSlider->StampValueIntoLogs( m_pSlider->GetTextEntryControl(), val );
}
void CAttributeSlider::OnMouseDoublePressed( MouseCode code )
{
if ( !IsEnabled() || IsDragging() )
return;
if ( code != MOUSE_LEFT )
return;
int x,y;
input()->GetCursorPosition( x, y );
ScreenToLocal( x, y );
AnimationControlType_t type = DetermineControl( x, y );
EnterTextEntryMode( type, false );
}
//-----------------------------------------------------------------------------
//
// Methods related to preview
//
//-----------------------------------------------------------------------------
void CAttributeSlider::EnablePreview( bool state, bool simple, bool faderdrag )
{
m_bPreviewEnabled = state;
m_bSimplePreviewOnly = simple;
m_bFaderBeingDragged = faderdrag;
}
bool CAttributeSlider::IsPreviewEnabled() const
{
return m_bPreviewEnabled;
}
bool CAttributeSlider::IsSimplePreview() const
{
return m_bSimplePreviewOnly;
}
#define ATTRIBUTE_SLIDER_RAMP_TIME 0.5f
bool CAttributeSlider::IsRampingTowardPreview() const
{
if ( m_flPreviewGoalTime == -1.0f )
return false;
return true;
}
void CAttributeSlider::RampDown()
{
if ( m_flPreviewGoalTime == -1.0f )
return;
m_Previous.m_Current = GetValue();
m_Previous.m_Full = GetValue( );
m_bRampUp = false;
}
void CAttributeSlider::UpdateFaderAmount( float flAmount )
{
m_flFaderAmount = flAmount;
AttributeValue_t current = GetValue();
if ( m_flPreviewGoalTime == -1.0f )
{
BlendFlexValues( &m_Preview.m_Current, current, m_Preview.m_Full, flAmount );
return;
}
BlendFlexValues( &m_Next.m_Current, current, m_Next.m_Full, flAmount );
}
void CAttributeSlider::UpdateTime( float dt )
{
if ( m_flPreviewGoalTime == -1.0f )
return;
// Move toward goal
if ( m_bRampUp )
{
if ( m_flPreviewGoalTime < ATTRIBUTE_SLIDER_RAMP_TIME )
{
m_flPreviewGoalTime += dt;
}
}
else
{
m_flPreviewGoalTime -= dt;
}
if ( m_flPreviewGoalTime >= ATTRIBUTE_SLIDER_RAMP_TIME )
{
m_Preview = m_Next;
m_flPreviewGoalTime = ATTRIBUTE_SLIDER_RAMP_TIME;
}
else if ( m_flPreviewGoalTime <= 0.0f )
{
m_flPreviewGoalTime = -1.0f;
m_Preview = m_Previous;
}
else
{
float frac = m_flPreviewGoalTime / ATTRIBUTE_SLIDER_RAMP_TIME;
BlendFlexValues( &m_Preview.m_Current, m_Previous.m_Current, m_Next.m_Current, frac );
BlendFlexValues( &m_Preview.m_Full, m_Previous.m_Full, m_Next.m_Full, frac );
}
}
void CAttributeSlider::SetPreview( const AttributeValue_t &value, const AttributeValue_t &full, bool instantaneous, bool startfromcurrent )
{
m_bRampUp = true;
if ( instantaneous )
{
m_Next.m_Current = value;
m_Next.m_Full = full;
m_Preview = m_Previous = m_Next;
m_flPreviewGoalTime = -1.0f;
}
else
{
// Current becomes previous, next becomes goal and preview starts moving toward that goal
if ( startfromcurrent )
{
m_Previous.m_Current = GetValue( );
m_Previous.m_Full = GetValue( );
}
else
{
m_Previous = m_Preview;
}
m_Next.m_Current = value;
m_Next.m_Full = full;
m_flPreviewGoalTime = 0.0f;
}
}
const AttributeValue_t &CAttributeSlider::GetPreview() const
{
return m_Preview.m_Current;
}
float CAttributeSlider::GetPreview( AnimationControlType_t type ) const
{
return m_Preview.m_Current.m_pValue[type];
}
// Estimates the value of the control given a local coordinate
float CAttributeSlider::EstimateValueAtPos( int nLocalX, int nLocalY ) const
{
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
float flFactor = rect.width > 1 ? (float)( nLocalX - rect.x ) / (float)( rect.width - 1 ) : 0.5f;
flFactor = clamp( flFactor, 0.0f, 1.0f );
return flFactor;
}
//-----------------------------------------------------------------------------
// Layout
//-----------------------------------------------------------------------------
void CAttributeSlider::PerformLayout()
{
BaseClass::PerformLayout();
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
// Place the text entry along the main attribute track rectangle
if ( m_pRightTextField && GetTextEntryControl() == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
m_pTextField ->SetBounds( rect.x, rect.y, rect.width / 2, rect.height );
m_pRightTextField->SetBounds( rect.x + rect.width / 2, rect.y, rect.width / 2, rect.height );
}
else
{
m_pTextField->SetBounds( rect.x, rect.y, rect.width, rect.height );
}
}
void CAttributeSlider::GetControlRect( Rect_t *pRect, AnimationControlType_t type ) const
{
int sw, sh;
const_cast<CAttributeSlider*>( this )->GetSize( sw, sh );
int cw, ch;
m_pCircleImage->GetSize( cw, ch );
switch ( type )
{
case ANIM_CONTROL_VALUE:
pRect->x = 2 * SLIDER_PIXEL_SPACING + cw;
pRect->y = SLIDER_PIXEL_SPACING;
pRect->width = sw - pRect->x * 2;
pRect->height = max( 0, sh - SLIDER_PIXEL_SPACING * 2 );
break;
/*
case ANIM_CONTROL_BALANCE:
pRect->x = SLIDER_PIXEL_SPACING;
pRect->y = max( 0, sh - ch ) / 2;
pRect->width = cw;
pRect->height = min( ch, sh );
break;
*/
case ANIM_CONTROL_MULTILEVEL:
pRect->x = sw - SLIDER_PIXEL_SPACING - cw;
pRect->y = max( 0, sh - ch ) / 2;
pRect->width = cw;
pRect->height = min( ch, sh );
break;
}
}
bool CAttributeSlider::IsFaderBeingDragged()
{
return IsPreviewEnabled() && m_bFaderBeingDragged;
}
//-----------------------------------------------------------------------------
//
// Methods related to painting start here
//
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Used to control how fader-driven ticks look
//-----------------------------------------------------------------------------
float CAttributeSlider::GetPreviewAlphaScale() const
{
return max( m_flFaderAmount, 0.1f );
}
//-----------------------------------------------------------------------------
// Draws a tick on the main control
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawTick( const Color& clr, float frac, int width, int inset )
{
// Get the control position
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
// Inset by 1 pixel
rect.x++; rect.y++; rect.width -= 2; rect.height -= 2;
surface()->DrawSetColor( clr );
int previewx = (int)( frac * (float)rect.width + 0.5f ) + rect.x;
int previewtall = rect.height - 2 * inset;
int ypos = rect.y + ( rect.height - previewtall ) / 2;
int xpos = previewx - width / 2;
xpos = clamp( xpos, rect.x, rect.x + rect.width - width );
surface()->DrawFilledRect( xpos, ypos, xpos + width, ypos + previewtall );
}
//-----------------------------------------------------------------------------
// Draws a preview tick on the main control
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawPreviewTick( bool bMainTick )
{
Color col = s_PreviewTickColor;
col[ 3 ] *= bMainTick ? GetPreviewAlphaScale() : 0.5f;
DrawTick( col, m_Next.m_Full.m_pValue[ ANIM_CONTROL_VALUE ], 2, 2 );
}
//-----------------------------------------------------------------------------
// Draws a tick on a circular control
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawCircularTick( const Color& clr, float flValue, int nCenterX, int nCenterY, float flRadius )
{
float flFraction = 1.0f;
float flAngle = 0.0f;
if ( flValue < 0.5f )
{
flFraction = ( flValue / 0.5f );
flAngle = 180.0f + flFraction * 180.0f;
}
else
{
flFraction = ( flValue - 0.5f ) * 2.0f;
flAngle = flFraction * 180.0f;
}
float flRadians = DEG2RAD( flAngle );
float ca = cos( flRadians );
float sa = sin( flRadians );
int nEndX = nCenterX + flRadius * sa;
int nEndY = nCenterY - flRadius * ca;
surface()->DrawSetColor( clr );
surface()->DrawLine( nCenterX, nCenterY, nEndX, nEndY );
}
//-----------------------------------------------------------------------------
// Draws a preview of a circular control
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawCircularPreview( AnimationControlType_t type, bool bMainTick, float flRadius )
{
Rect_t rect;
GetControlRect( &rect, type );
// Fill left from top
float flPreview = m_Next.m_Full.m_pValue[type];
float flCurrent = GetValue( type );
Color clr = s_PreviewTickColor;
clr[ 3 ] *= bMainTick ? GetPreviewAlphaScale() : 0.5f;
int nCenterX = rect.x + rect.width / 2;
int nCenterY = rect.y + rect.height / 2;
DrawCircularTick( clr, flPreview, nCenterX, nCenterY, flRadius );
if ( m_bSimplePreviewOnly && !m_bFaderBeingDragged )
return;
clr = s_OldValueTickColor;
if ( !bMainTick )
{
clr[ 3 ] *= 0.5f;
}
DrawCircularTick( clr, flCurrent, nCenterX, nCenterY, flRadius );
}
//-----------------------------------------------------------------------------
// Paints ticks
//-----------------------------------------------------------------------------
void CAttributeSlider::Paint()
{
DrawTick( s_OldValueTickColor, GetValue( ANIM_CONTROL_VALUE ), 1, 0 );
if ( m_bPreviewEnabled )
{
DrawPreviewTick( true );
if ( IsControlActive( ANIM_CONTROL_BALANCE ) )
{
DrawCircularPreview( ANIM_CONTROL_BALANCE, true, CIRCULAR_CONTROL_RADIUS );
}
if ( IsControlActive( ANIM_CONTROL_MULTILEVEL ) )
{
DrawCircularPreview( ANIM_CONTROL_MULTILEVEL, true, CIRCULAR_CONTROL_RADIUS );
}
}
}
//-----------------------------------------------------------------------------
// Draws the min, current, and max values for the slider
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawValueLabel( float flValue )
{
float flMinVal = 0.0f;
float flMaxVal = 1.0f;
flValue = clamp( flValue, flMinVal, flMaxVal );
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
int cw, ch;
char sz[ 32 ];
Q_snprintf( sz, sizeof( sz ), "%.1f", flMinVal );
m_pValues[ 0 ]->SetText( sz );
m_pValues[ 0 ]->ResizeImageToContent();
m_pValues[ 0 ]->GetContentSize( cw, ch );
m_pValues[ 0 ]->SetPos( rect.x + 5, rect.y + ( rect.height - ch ) * 0.5f );
m_pValues[ 0 ]->Paint();
Q_snprintf( sz, sizeof( sz ), "%.1f", flMaxVal );
m_pValues[ 2 ]->SetText( sz );
m_pValues[ 2 ]->ResizeImageToContent();
m_pValues[ 2 ]->GetContentSize( cw, ch );
m_pValues[ 2 ]->SetPos( rect.x + rect.width - cw - 5, rect.y + ( rect.height - ch ) * 0.5f );
m_pValues[ 2 ]->Paint();
Q_snprintf( sz, sizeof( sz ), "%.3f", flValue );
m_pValues[ 1 ]->SetText( sz );
m_pValues[ 1 ]->ResizeImageToContent();
m_pValues[ 1 ]->GetContentSize( cw, ch );
m_pValues[ 1 ]->SetPos( rect.x + ( rect.width - cw ) * 0.5f, rect.y + ( rect.height - ch ) * 0.5f );
m_pValues[ 1 ]->Paint();
}
//-----------------------------------------------------------------------------
// Draws the text for the slider. It's either the slider name, or its value if dragging is happening
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawNameLabel()
{
if ( IsDragging() )
{
float flValue = GetValue( GetDragControl() );
DrawValueLabel( flValue );
return;
}
if ( IsInTextEntry() )
return;
int w, h;
GetSize( w, h );
int cw, ch;
Color clr = m_bCursorInsidePanel ? s_TextColorFocus : s_TextColor;
m_pName->SetColor( clr );
m_pName->GetContentSize( cw, ch );
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
m_pName->SetPos( rect.x + ( rect.width - cw ) * 0.5f, rect.y + ( rect.height - ch ) * 0.5f );
m_pName->Paint();
}
//-----------------------------------------------------------------------------
// Draws the midpoint value for the slider
//-----------------------------------------------------------------------------
void CAttributeSlider::DrawMidpoint( int x, int ty, int ttall )
{
surface()->DrawSetColor( s_MidpointColor );
surface()->DrawFilledRect( x, ty, x + 1, ty + ttall );
}
//-----------------------------------------------------------------------------
// Paints circular controls used for balance + multilevel controls
//-----------------------------------------------------------------------------
void CAttributeSlider::PaintCircularControl( float flValue, const Rect_t& rect )
{
flValue = clamp( flValue, 0.0f, 1.0f );
m_pCircleImage->SetPos( rect.x, rect.y );
m_pCircleImage->Paint();
int ofs[ 2 ] = { 0 };
LocalToScreen( ofs[ 0 ], ofs[ 1 ] );
int nCenterX = ofs[ 0 ] + rect.x + rect.width / 2;
int nCenterY = ofs[ 1 ] + rect.y + rect.height / 2;
float maxTrianges = 36.0f;
float frac = 0.0f;
float step = 180.0f / (float)( maxTrianges );
float ang = 0.0f;
float clamp = 360.0f;
int numTriangles = 0;
float radius = CIRCULAR_CONTROL_RADIUS;
float zpos = vgui::surface()->GetZPos();
Vector centerVert( nCenterX, nCenterY, zpos );
Vector top;
top = centerVert;
top.y -= radius;
// Fill left from top
if ( flValue < 0.5f )
{
frac = 1.0f - ( flValue / 0.5f );
numTriangles = (int)( frac * ( maxTrianges ) + 0.5f );
clamp = 180.0f;
step = -step;
ang = 360.0f;
}
else
{
frac = ( flValue - 0.5f ) / 0.5f;
numTriangles = (int)( frac * ( maxTrianges ) + 0.5f );
clamp = 180.0f;
}
if ( numTriangles == 0 )
return;
CMatRenderContextPtr pRenderContext( materials );
IMesh *pMesh = pRenderContext->GetDynamicMesh( true, NULL, NULL, m_pWhite );
Color clr( 102, 102, 102, 255 );
CMeshBuilder meshBuilder;
meshBuilder.Begin( pMesh, MATERIAL_TRIANGLES, numTriangles );
Vector next;
next.Init();
for ( int j = 0; j < numTriangles; j++ )
{
ang += step;
//ang = min( ang, clamp );
float flRadians = DEG2RAD( ang );
float ca = cos( flRadians );
float sa = sin( flRadians );
meshBuilder.Position3fv( centerVert.Base() );
meshBuilder.Color4ub( clr.r(), clr.g(), clr.b(), clr.a() );
meshBuilder.TexCoord2f( 0, 0, 0 );
meshBuilder.AdvanceVertex();
next.Init();
next.x = radius * sa;
next.y = -radius * ca;
next += centerVert;
if ( step > 0 )
{
meshBuilder.Position3fv( top.Base() );
meshBuilder.Color4ub( clr.r(), clr.g(), clr.b(), clr.a() );
meshBuilder.TexCoord2f( 0, 0, 1 );
meshBuilder.AdvanceVertex();
meshBuilder.Position3fv( next.Base() );
meshBuilder.Color4ub( clr.r(), clr.g(), clr.b(), clr.a() );
meshBuilder.TexCoord2f( 0, 1, 0 );
meshBuilder.AdvanceVertex();
}
else
{
meshBuilder.Position3fv( next.Base() );
meshBuilder.Color4ub( clr.r(), clr.g(), clr.b(), clr.a() );
meshBuilder.TexCoord2f( 0, 0, 1 );
meshBuilder.AdvanceVertex();
meshBuilder.Position3fv( top.Base() );
meshBuilder.Color4ub( clr.r(), clr.g(), clr.b(), clr.a() );
meshBuilder.TexCoord2f( 0, 1, 0 );
meshBuilder.AdvanceVertex();
}
top = next;
}
meshBuilder.End();
pMesh->Draw();
}
//-----------------------------------------------------------------------------
// Paints the slider
//-----------------------------------------------------------------------------
void CAttributeSlider::PaintBackground()
{
Rect_t rect;
GetControlRect( &rect, ANIM_CONTROL_VALUE );
// Paint the border
surface()->DrawSetColor( Color( 24, 24, 24, 255 ) );
// top and left
surface()->DrawOutlinedRect( rect.x, rect.y, rect.x + rect.width, rect.y + 1 );
surface()->DrawOutlinedRect( rect.x, rect.y, rect.x + 1, rect.y + rect.height );
// right
surface()->DrawSetColor( Color( 33, 33, 33, 255 ) );
surface()->DrawOutlinedRect( rect.x + rect.width - 1, rect.y, rect.x + rect.width, rect.y + rect.height );
// bottom
surface()->DrawSetColor( Color( 56, 56, 56, 255 ) );
surface()->DrawOutlinedRect( rect.x, rect.y + rect.height - 1, rect.x + rect.width, rect.y + rect.height );
// Inset the rect by 1 pixel
++rect.x; ++rect.y; rect.width -= 2; rect.height -= 2;
int y0 = rect.y;
int y1 = rect.y + rect.height / 2;
int y2 = rect.y + rect.height;
// Draw the main bar background
surface()->DrawSetColor( s_ZeroColor[ m_bIsLogPreviewControl ][ IsSelected() ] );
surface()->DrawFilledRect( rect.x, y0, rect.x + rect.width, y2 );
AnimationControlType_t viewType = ANIM_CONTROL_VALUE;
if ( IsDragging() )
{
viewType = GetDragControl();
}
else if ( IsInTextEntry() )
{
viewType = GetTextEntryControl();
}
bool bUsePreview = m_bPreviewEnabled && ( !m_bSimplePreviewOnly || m_bFaderBeingDragged );
float flMidPoint = GetControlDefaultValue( viewType );
int nMidPoint = (int)( (float)rect.width * clamp( flMidPoint, 0.0f, 1.0f ) + 0.5f );
float flValue = bUsePreview ? m_Preview.m_Current.m_pValue[viewType] : GetValue( viewType );
if ( viewType == ANIM_CONTROL_VALUE && IsControlActive( ANIM_CONTROL_BALANCE ) )
{
float flBalance = bUsePreview ? m_Preview.m_Current.m_pValue[ ANIM_CONTROL_BALANCE ] : GetValue( ANIM_CONTROL_BALANCE );
float flLeftValue, flRightValue;
ValueBalanceToLeftRight( &flLeftValue, &flRightValue, flValue, flBalance );
int nLeftValue = (int)( (float)rect.width * clamp( flLeftValue, 0.0f, 1.0f ) + 0.5f );
int nRightValue = (int)( (float)rect.width * clamp( flRightValue, 0.0f, 1.0f ) + 0.5f );
// Draw the current value as a bar from the midpoint
surface()->DrawSetColor( IsDragging() ? s_DraggingBarColor : s_BarColor[ m_bIsLogPreviewControl ][ IsSelected() ] );
surface()->DrawFilledRect( rect.x + min( nLeftValue, nMidPoint ), y0, rect.x + max( nLeftValue, nMidPoint ), y1 );
surface()->DrawFilledRect( rect.x + min( nRightValue, nMidPoint ), y1, rect.x + max( nRightValue, nMidPoint ), y2 );
}
else
{
Assert( viewType != ANIM_CONTROL_BALANCE );
int nValue = (int)( (float)rect.width * clamp( flValue, 0.0f, 1.0f ) + 0.5f );
// Draw the current value as a bar from the midpoint
surface()->DrawSetColor( IsDragging() ? s_DraggingBarColor : s_BarColor[ m_bIsLogPreviewControl ][ IsSelected() ] );
surface()->DrawFilledRect( rect.x + min( nValue, nMidPoint ), y0, rect.x + max( nValue, nMidPoint ), y2 );
}
// Draw the midpoint over the top of the current value
DrawMidpoint( rect.x + nMidPoint, rect.y, rect.height );
// Draw the name or value over the top of that
DrawNameLabel();
// Paints the circular controls
if ( IsControlActive( ANIM_CONTROL_MULTILEVEL ) )
{
float flMultiValue = bUsePreview ? m_Preview.m_Current.m_pValue[ANIM_CONTROL_MULTILEVEL] : GetValue( ANIM_CONTROL_MULTILEVEL );
GetControlRect( &rect, ANIM_CONTROL_MULTILEVEL );
PaintCircularControl( flMultiValue, rect );
// Draws the midpoint for the circular controls
int nCenterX = rect.x + rect.width / 2;
int nCenterY = rect.y + rect.height / 2;
DrawCircularTick( s_MidpointColor, GetControlDefaultValue( ANIM_CONTROL_MULTILEVEL ), nCenterX, nCenterY, CIRCULAR_CONTROL_RADIUS );
}
}
|