vote up 0 vote down star

I'm trying to write a simple component that will allow you to embed one or more SDL rendering surfaces on a Delphi window, using the SDL 1.3 APIs. It will compile and install just fine, but when I try to use the component in the form designer, it raises AVs whenever I try to access its properties in the object inspector, save the form, or delete the component, and placing one on a form then trying to run gives a linker error: it apparently can't read the DFM properly for whatever reason.

The DLL can be found at http://www.libsdl.org/tmp/SDL-1.3-dll.zip and the source code to my component can be downloaded here. SDL.pas is a JEDI-SDL header file; the rest is my own code.

I don't see any reason for this to raise AVs in the form designer. If I dynamically create the control at runtime I don't have any stability issues. Can anyone take a look at this and maybe provide some feedback that might help me clear it up?

flag

68% accept rate

1 Answer

vote up 14 vote down check

You can debug this yourself. Open the package project that contains your component. Then go to Run|Parameters and enter the IDE itself as the Host Application. Run the IDE from within the IDE. Then repeat your steps to reproduce the AV, and the IDE should stop and show you where things are failing. You can use normal debugging techniques from there.

link|flag
OK. The problem goes away when I remove the Flags property from the published section. The IDE chokes when it tries to look up the RTTI for the underlying Set definition. I'm running Delphi 2009 with all the updates installed. This is the second case I've found of bad RTTI in '09. I'll put it in QC. – Mason Wheeler Mar 9 at 20:10
How is the set declared? How many elements in the set? You can only publish sets that only contain up to 32 elements. – Allen Bauer Mar 9 at 21:39
TSdlWindowFlags = set of (sdlwFullscreen, sdlwOpenGl, sdlwShown, sdlwBorderless, sdlwResizable, sdlwMinimized, sdlwMaximized, sdlwInputGrabbed, dslwInputFocus, sdlwMouseFocus, sdwlForeign, sdlwForce32 = 31); 12 elements in the enumeration, crafted so I can pass it to a C routine expecting an "int". – Mason Wheeler Mar 10 at 0:23
The high element is never used, of course. But it doesn't overflow the 32-element limit. See qc.embarcadero.com/wc/qcmain.aspx?d=72070 for my bug report. – Mason Wheeler Mar 10 at 0:24
Ah. It's a disconnected enumeration. The last element isn't contiguous. That is probably the cause since the RTTI doesn't handle non-contiguous enumerations and then sets created from them. – Allen Bauer Mar 10 at 15:37
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.