Subversion Repositories spacemission

Rev

Rev 1 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 daniel-mar 1
unit DXConsts;
2
 
3
interface
4
 
5
resourcestring
6
  SNone = '(None)';
7
  SUnknownError = 'Unknown Error (%d)';
8
 
9
  SDirectDraw = 'DirectDraw';
10
  SDirect3DRM = 'Direct3D RetainedMode';
11
  SDirectSound = 'DirectSound';
12
  SDirectSoundCapture = 'DirectSoundCapture';
13
  SDirectDrawClipper = 'Clipper';
14
  SDirectDrawPalette = 'Palette';
15
  SDirectDrawSurface = 'Surface';
16
  SDirectDrawPrimarySurface = 'Primary Surface';
17
  SDirectSoundBuffer = 'Sound Buffer';
18
  SDirectSoundPrimaryBuffer = 'Primary Buffer';
19
  SDirectSoundCaptureBuffer = 'Sound Capture Buffer';
20
  STexture = 'Texture';
21
  SDirectPlay = 'DirectPlay';
22
  SSession = 'Session';
23
 
24
  SNotMade = '%s not made';
4 daniel-mar 25
  SStreamNotOpend = 'Stream not opened';
1 daniel-mar 26
  SWaveStreamNotSet = 'WaveStream not set';
27
  SCannotMade = '%s cannot be made';
28
  SCannotInitialized = '%s cannot be initialized';
29
  SCannotChanged = '%s cannot be changed';
30
  SCannotLock = '%s cannot be locked';
31
  SCannotOpened = '%s cannot be opened';
4 daniel-mar 32
  SDLLNotLoaded = '%s is not loaded';
1 daniel-mar 33
  SImageNotFound = 'Image ''%s'' not found';
34
  SWaveNotFound = 'Wave ''%s'' not found';
35
  SEffectNotFound = 'Effect ''%s'' not found';
36
  SListIndexError = 'Index of the list exceeds the range. (%d)';
37
  SScanline = 'Index of the scanning line exceeded the range. (%d)';
38
  SNoForm = 'Form not found';
4 daniel-mar 39
  SSinceDirectX5 = 'Requires DirectX 5.0 or later';
40
  SSinceDirectX6 = 'Requires DirectX 6.0 or later';
41
  SSinceDirectX7 = 'Requires DirectX 7.0 or later';
1 daniel-mar 42
  S3DDeviceNotFound = '3D device not found';
43
  SDisplayModeChange = 'Display mode cannot be changed (%dx%d %dbit)';
4 daniel-mar 44
  SDisplayModeCannotAcquired = 'Display mode cannot be acquired';
1 daniel-mar 45
  SInvalidDIB = 'DIB is invalid';
46
  SInvalidDIBBitCount = 'Bitcount in invalid (%d)';
47
  SInvalidDIBPixelFormat = 'PixelFormat in invalid';
48
  SInvalidWave = 'Wave is invalid';
4 daniel-mar 49
  SInvalidDisplayBitCount = 'Display requires 8, 16, 24 or 32 bits';
1 daniel-mar 50
  SInvalidWaveFormat = 'Format is invalid';
51
  SNotSupported = '%s not supported';
4 daniel-mar 52
  SStreamOpend = 'Stream is already open';
53
  SNecessaryDirectInputUseMouse = 'DirectInput is required for mouse support';
1 daniel-mar 54
 
55
  {  DirectPlay  }
4 daniel-mar 56
  SDXPlayNotConnectedNow = 'TDXPlay component is disconnected.';
1 daniel-mar 57
  SDXPlayProviderNotFound = 'Provider ''%s'' not found';
4 daniel-mar 58
  SDXPlayProviderSpecifiedGUIDNotFound = 'Provider''s specified GUID is not found';
1 daniel-mar 59
  SDXPlayModemListCannotBeAcquired = 'Modem list cannot be acquired';
60
  SDXPlaySessionListCannotBeAcquired = 'Session list cannot be acquired';
61
  SDXPlaySessionNotFound = 'Session ''%s'' not found';
62
  SDXPlaySessionCannotOpened = 'Session %s cannot be opened';
4 daniel-mar 63
  SDXPlayPlayerNotFound = 'Player''s specified ID is not found';
64
  SDXPlayMessageIllegal = 'Illegal message form';
1 daniel-mar 65
  SDXPlayPlayerNameIsNotSpecified = 'Player name is not specified';
66
  SDXPlaySessionNameIsNotSpecified = 'Session name is not specified';
67
 
68
  DXPlayFormNext = 'Next >';
69
  DXPlayFormComplete = 'Complete';
70
 
71
 
4 daniel-mar 72
  SNotSupportGraphicFile = 'Graphic format not suported';
73
  SInvalidDXTFile = 'DXT file is invalid';
74
  SCannotLoadGraphic = 'Can not load graphic';
75
  SOverlay = 'Surface overlay not possible';
1 daniel-mar 76
 
77
const
78
  SDIBSize = '(%dx%d)';
79
  SDIBColor = '%d color';
80
  SDIBBitSize = '%d bytes';
81
  SDIBBitSize_K = '%d Kbytes';
82
 
83
const
84
  SWaveLength = '%.4g sec';
85
  SWaveFrequency = '%dHz';
86
  SWaveBitCount = '%dbit';
87
  SWaveMono = 'Mono';
88
  SWaveStereo = 'Stereo';
89
  SWaveSize = '%d bytes';
90
 
91
const
92
  SKeyLeft = 'Left';
93
  SKeyUp = 'Up';
94
  SKeyRight = 'Right';
95
  SKeyDown = 'Down';
96
 
97
const
98
  SFFBEffectEditor = '%s Effect Editor';
99
 
100
implementation
101
 
102
end.