-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuEditor.Consts.pas
More file actions
79 lines (70 loc) · 1.83 KB
/
uEditor.Consts.pas
File metadata and controls
79 lines (70 loc) · 1.83 KB
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
unit uEditor.Consts;
interface
const EditorPatchFileNames: array[0..5] of string = // To check if Hanfling's EditorPatch is installed.
(
'EditorPatch.dll',
'EditorPatch.ini',
'EditorPatch.int',
'EditorPatch.u',
'RenderExt.dll',
'RenderExt.int'
);
const OpenGlDrvFiles: array[0..1] of string = // To check if Hanfling's OpenGlDrv is installed
(
'OpenGlDrv.dll',
'OpenGlDrv.int'
);
const FilterPackages: array[0..8] of string = // Don't show these packages in Actor class browser
(
'OpenGLDrv',
'SoftDrv',
'D3D9DrvRTX',
'd3d10drv',
'D3D9Drv',
'D3DDrv',
'Window',
'WinDrv',
'RenderExt'
);
const FilterFonts: array[0..32] of string = // Remove these entries from texture groups
(
'SmallFont', // Engine.u
'MedFont',
'BigFont',
'LargeFont',
'TechMedium', // Extension
'TechMedium_DS',
'TechMedium_B',
'TechSmall',
'TechSmall_DS',
'TechTiny',
'FontSansSerif_8_Bold', // DeusExUI
'FontSansSerif_8',
'FontComputer8x20_C',
'FontComputer8x20_A',
'FontSpinningDX',
'FontComputer8x20_B',
'FontLocation',
'FontConversationLargeBold',
'FontConversationBold',
'FontConversation',
'FontHUDWingDings',
'FontFixedWidthLocation',
'FontTitleLarge',
'FontMenuSmall_DS',
'FontMenuSmall',
'FontMenuTitle',
'FontMenuHeaders_DS',
'FontMenuHeaders',
'FontFixedWidthSmall_DS',
'FontFixedWidthSmall',
'FontMenuExtraLarge',
'FontTiny',
'FontConversationLarge'
);
const DXEditPlusIniFile = 'DXEditPlus.ini';
const MAX_RECENT_MAPS = 9; // like in ConEditPlus, actually 10
const GAME_INI_FILE = 'DeusEx.ini'; // Using this file by default
const ActorBrowserQuickJump = 'ActorBrowser.QuickJump.txt';
implementation
end.