What is the most complicated, complex block of code you've ever written for a legitimate purpose in a real project (up to 20 lines)?
feedback
|
|
This is the most complicated code I needed at one point:
What this Delphi code does is - in short - the following: It creates a executable block of memory that, when called, will push the pointer to the object that is referenced in the TMethod argument on the stack. After that it will call the method. The reason I needed that was that I once had to call an API method and give a callback method pointer to it. That API did not know about the 'self' pointer used in delphi. I could only provide 'static' methods. This way I could not identify the source object when the callback came in. With that code I could dynamically create a certain method for each object that used this API - even in multiple threads - and always the correct object could be called. | |||
|
feedback
|
|
I once wrote some microcode to create an assembly language. That was pretty complex as I didn't understand modularity in those days nearly as well I do now. | |||
|
feedback
|
|
Implementing a priority queue in C++ where the priorities could be changed. I no longer have access to that, though, and I couldn't post it if I did. | |||
|
feedback
|
|
Probably doesn't count as code, but what the hell. Back when I was a COBOL programmer I rendered in the header comments a wonderfully complex ASCII diagram of the application data flow. | |||
|
feedback
|
|
Actually, that's a tough one as I don't tend to allow my code to get complicated. That's a failure of the coder. However, sometimes I have something rather complicated to accomplish. For example, there is this code which performs a picewise linear interpolation of the value for a given coordinate from a two-dimensional array of coordinate values. Note how long the comment is. With me, that's a bad sign. Also note that this call is recursive.
| |||
|
feedback
|