blob: 8fc89288ce7fabea6fcc38bfaa604390ef519564 (
plain) (
blame)
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include <vgui/MouseCode.h>
#include "vgui_rotation_slider.h"
CRotationSlider::CRotationSlider( vgui::Panel *pParent, const char *pName ) :
BaseClass( pParent, pName )
{
AddActionSignalTarget( this );
SetRange( -180, 180 );
SetTickCaptions("-180", "180");
SetValue( 0 );
m_flYaw = 0;
}
void CRotationSlider::SetControlledObject( C_BaseObject *pObject )
{
m_hObject.Set( pObject );
}
//-----------------------------------------------------------------------------
// When the slider is activated, deactivated, or moves
//-----------------------------------------------------------------------------
void CRotationSlider::OnMousePressed( vgui::MouseCode code )
{
BaseClass::OnMousePressed( code );
if (code != MOUSE_LEFT)
return;
C_BaseObject *pObj = m_hObject.Get();
if (pObj)
{
m_flInitialYaw = pObj->GetAbsAngles().y;
pObj->PreviewYaw( m_flInitialYaw );
pObj->ActivateYawPreview( true );
}
}
void CRotationSlider::OnSliderMoved( int position )
{
C_BaseObject *pObj = m_hObject.Get();
if (pObj && pObj->IsPreviewingYaw())
{
m_flYaw = anglemod(position);
pObj->PreviewYaw( m_flInitialYaw - m_flYaw );
}
}
void CRotationSlider::OnMouseReleased( vgui::MouseCode code )
{
BaseClass::OnMouseReleased( code );
if (code != MOUSE_LEFT)
return;
C_BaseObject *pObj = m_hObject.Get();
if (pObj)
{
char szbuf[48];
Q_snprintf( szbuf, sizeof( szbuf ), "yaw %0.2f\n", m_flInitialYaw - m_flYaw );
pObj->SendClientCommand( szbuf );
pObj->ActivateYawPreview( false );
SetValue(0);
m_flYaw = 0;
}
}
|