summaryrefslogtreecommitdiffstats
path: root/tools/objectsnapper/code/scripts/os_main.mel
blob: 7a8c567d80fedb695818ff15f0846ee0d68a60c4 (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
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
//-----------------------------------------------------------------------------
// Copyright (C) 2001 Radical Entertainment Ltd.  All rights reserved.
//
// TE_main.mel
//
// Description: Installs the Object Snapper (OS) interface.
//              As a convention all Object Snapper global procedures 
//              and global variables are prefixed with "os_".  All commands 
//              exposed through OS plugins are prefixed with "OS_".
//
//              MCB = Menu Call Back
//              BCB = Button Call Back
//
// Modification History:
//  + Created March 18 2002 -- Cary Brisebois
//-----------------------------------------------------------------------------


global float $gOS_Offset = 0.10;


//-----------------------------------------------------------------------------
// o s _ b r e a k p o i n t 
//
// Synopsis:
//
// Parameters:  NONE
//
// Returns:     NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc os_breakpoint( string $tag )
{
    confirmDialog -m ( "BreakPoint: " + $tag );
}

//-----------------------------------------------------------------------------
// o s _ M C B _ A b o u t
//
// Synopsis:    Display an About Object Snapper window.
//
// Parameters:  NONE
//
// Returns:     NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc os_MCB_About()
{
	string $pluginVersion = "1.0";

    string $message = ( "\nSimpsons Road Rage Object Snapper.\n\n" +
                        "Release " + $pluginVersion + "\n" +
                        "(c) 2001, Radical Entertainment, Ltd.\n\n" );


    confirmDialog -title "About Object Snapper"
                  -message $message
                  -button "OK"
                  -defaultButton "OK";
}

//-----------------------------------------------------------------------------
// o s _ d o M a i n M e n u I t e m s
//
// Synopsis:    Creates the OS menu on the menu handle passed in.
//
// Parameters:  NONE
//
// Returns:     NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc os_doMainMenuItems( string $menu )
{
    menu -edit -tearOff true -allowOptionBoxes true $menu;

        menuItem -label "Snap Single Selected" -command ( "os_MCB_SnapSingleSelected()" );

        menuItem -divider true; 

        menuItem -label "Snap All Selected" -command ( "os_MCB_SnapSelected()" );

        menuItem -divider true; 

        menuItem -label "Snap Tree Line" -command ( "os_MCB_SnapTreeLine()" );

        menuItem -divider true; 

        menuItem -label "About" -command "os_MCB_About()";

        menuItem -optionBox true -command "os_MCB_OSOptions()";

    setParent -m ..;
}

//-----------------------------------------------------------------------------
// o s _ I n s t a l l U I
//
// Synopsis:
//
// Parameters:  NONE
//
// Returns:     NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc os_InstallUI()
{

    global string $gMainWindow;

    //
    // Install OS menu as a root menu.
    //
    if ( `menu -exists os_MainMenu` ) deleteUI os_MainMenu;
    menu -label "Object Snapper" -allowOptionBoxes true -parent $gMainWindow os_MainMenu; 

    os_doMainMenuItems "os_MainMenu";
}

//==============================================================================
// global proc os_RemoveUI
//==============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      global 
//
//==============================================================================
global proc os_RemoveUI()
{
    if ( `menu -exists os_MainMenu` ) deleteUI os_MainMenu;
    if ( `window -exists os_OptionWindow` ) deleteUI os_OptionWindow;
}

//==============================================================================
// global proc os_MCB_SnapSelected
//==============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      global 
//
//==============================================================================
global proc os_MCB_SnapSelected()
{
    global float $gOS_Offset;

    OS_SnapSelected( $gOS_Offset, 0 );
}
 

//==============================================================================
// global proc os_MCB_SnapSingleSelected
//==============================================================================
// Description: Comment 
//
// Parameters:  ()
//
// Return:      global 
//
//==============================================================================
global proc os_MCB_SnapSingleSelected()
{
    global float $gOS_Offset;

    OS_SnapSelected( $gOS_Offset, 1 );
}

//=============================================================================
// global proc os_MCB_SnapTreeLine
//=============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      global 
//
//=============================================================================
global proc os_MCB_SnapTreeLine()
{
    global float $gOS_Offset;

    OS_SnapSelected( $gOS_Offset, 2 );
}

//==============================================================================
// global proc os_MCB_OSOptions
//==============================================================================
// Description: Comment
//
// Parameters:  ()
//
// Return:      global 
//
//==============================================================================
global proc os_MCB_OSOptions()
{
    global float $gOS_Offset;

    if ( `window -exists os_OptionWindow` ) deleteUI os_OptionWindow;

    window -title "Object Snapper Options" os_OptionWindow;

    columnLayout;

        rowLayout -nc 2;

            text -label "Offset (M):";

            floatField -min -10.0 -max 10.0 -value $gOS_Offset -cc ("$gOS_Offset = #1");

        setParent ..;

    setParent ..;

    showWindow;
}

evalDeferred "os_InstallUI";