blob: 6a975824407ac95af6407f387dca77ccba81d413 (
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
|
//-----------------------------------------------------------------------------
// Copyright (C) 2001 Radical Entertainment Ltd. All rights reserved.
//
// TE_main.mel
//
// Description: Installs the Terrain Editor (TE) interface.
// As a convention all Terrain Editor global procedures
// and global variables are prefixed with "te_". All commands
// exposed through TE plugins are prefixed with "TE_".
//
// MCB = Menu Call Back
// BCB = Button Call Back
//
// Modification History:
// + Created Apr 11, 2001 -- bkusy
// + Stolen & Adapted -- CBrisebois
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// t e _ b r e a k p o i n t
//
// Synopsis:
//
// Parameters: NONE
//
// Returns: NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc te_breakpoint( string $tag )
{
confirmDialog -m ( "BreakPoint: " + $tag );
}
//-----------------------------------------------------------------------------
// t e _ M C B _ A b o u t
//
// Synopsis: Display an About Terrain Editor window.
//
// Parameters: NONE
//
// Returns: NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc te_MCB_About()
{
// string $pluginVersion = `te_GetVersion`;
string $pluginVersion = "2.0";
string $message = ( "\nSimpsons Road Rage Terrain Editor.\n\n" +
"Release " + $pluginVersion + "\n" +
"(c) 2001, Radical Entertainment, Ltd.\n\n" );
confirmDialog -title "About Terrain Editor"
-message $message
-button "OK"
-defaultButton "OK";
}
//-----------------------------------------------------------------------------
// t e _ d o M a i n M e n u I t e m s
//
// Synopsis: Creates the TE menu on the menu handle passed in.
//
// Parameters: NONE
//
// Returns: NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc te_doMainMenuItems( string $menu )
{
menu -edit -tearOff true -allowOptionBoxes true $menu;
menuItem -label "Bounding Fences" -sm true;
menuItem -label "Create fence line" -command "te_MCB_StartBVLoop()";
menuItem -label "Split Fence(s)" -command "te_MCB_SplitSelectedBV()";
setParent -menu ..;
menuItem -label "Pedestrian Paths" -sm true;
menuItem -label "Create path line" -command "te_MCB_StartPPLoop()";
menuItem -label "Split Path(s)" -command "te_MCB_SplitSelectedPP()";
setParent -menu ..;
menuItem -divider true;
menuItem -label "Track Editor" -sm true;
radioMenuItemCollection;
menuItem -label "Off" -radioButton on -command "TE_StateChange(0)";
menuItem -label "Edit Mode" -radioButton off -command "TE_StateChange(1)";
menuItem -label "Display Mode" -radioButton off -command "TE_StateChange(2)";
menuItem -divider true;
menuItem -label "Create Intersections" -command "te_MCB_StartIntersection()";
menuItem -label "Edit Roads / Intersections" -command "te_MCB_EditIntersection()";
setParent -menu ..;
menuItem -divider true;
menuItem -label "Tree Line Tool" -allowOptionBoxes true -sm true;
menuItem -label "Create Tree Lines" -command "te_MCB_CreateTreeLines()";
menuItem -label "Options" -optionBox true -command "te_MCB_TreelineOptions()";
menuItem -divider true;
menuItem -label "Snap Selected Treelines" -command "te_MCB_SnapTreelines()";
menuItem -divider true;
menuItem -label "Convert Treelines to Geometry" -command "te_MCB_ConvertToGeometry()";
setParent -menu ..;
menuItem -divider true;
menuItem -label "Export" -command "te_MCB_Export()";
menuItem -optionBox true -command "TE_ExportOptions()";
menuItem -divider true;
menuItem -label "About" -command "te_MCB_About()";
setParent -m ..;
}
//-----------------------------------------------------------------------------
// t e _ I n s t a l l U I
//
// Synopsis:
//
// Parameters: NONE
//
// Returns: NOTHING
//
// Constraints: NONE
//
//-----------------------------------------------------------------------------
global proc te_InstallUI()
{
global string $gMainWindow;
//
// Install TE menu as a root menu.
//
if ( `menu -exists te_MainMenu` ) deleteUI te_MainMenu;
menu -label "Track Editor" -allowOptionBoxes true -parent $gMainWindow te_MainMenu;
te_doMainMenuItems "te_MainMenu";
}
global proc te_MCB_Export()
{
$whichCtx = `currentCtx`;
if ( $whichCtx != "" )
{
ctxCompletion;
}
TE_Export();
}
source "te_globals.mel";
source "te_setup.mel";
source "te_BVContext.mel";
source "te_PPContext.mel";
source "te_treelineContext.mel";
source "te_IntersectionContext.mel";
source "te_editorWindow.mel";
source "AETEShowRoadSegButton.mel";
evalDeferred "te_InstallUI";
|