I am using delphi 2009 and VCL components. I have created a collection called TStreets made of items TStreet which has just two private fields. Now I need to add to Tstreet class another field/property to keep track (by using reference) of other objects of class TMyObject.

An example: let's assume that TStreet collection contains five elements and ten objects (TMyObject) exists in my application at run-time. Each objects of TMyObject can belong to only one TStreet so I need to save for each TStreet all reference of objects and then be able to move one or more object reference from one TStreet to another. Should I create another colletion under TStreet where saving object references?

Is it correct the way to go?

link|improve this question

38% accept rate
1  
Are you actually using TCollection and TCollectionItem? Those classes are designed to help publish collections to the Object Inspector. Unless you actually want your Streets and YourObjects to be dropped on a form and manipulated at design time, you don't want TCollection – Cosmin Prund Feb 14 '11 at 16:00
1  
I can't make any sense of this. Perhaps I'm being particularly dumb today, but I wonder if you could try to make your question a little clearer. – David Heffernan Feb 14 '11 at 16:18
1  
There is nothing wrong with using TCollection as collection-type container, regardless of form designer interoperability. – Free Consulting Feb 14 '11 at 17:34
"There is nothing wrong with using TCollection as collection-type container". Well, other than being compelled to make your members descend from TCollectionItem and having to take TCollection's. rather designer-centric interface. TObjectList would be my personal choice. – David Heffernan Feb 14 '11 at 17:43
feedback

2 Answers

up vote 4 down vote accepted

Given the following.

TMyObject = class
  ...
end;

TStreet = class
 ...
 public
   property MyObject : TMyObject ...;
end;

TStreets = TList<TStreet>;

It appears from reading your question that a TMyObject can only be tied to one TStreet.

Then I would recommend reversing the references.

TStreet = class;

TMyObject = class
protected
  FStreet : TStreet;
public
  property Street : TStreet read FStreet write FStreet;
end;

TMyObjectList = TList<TMyObject>;

TStreet = class
 private
   // Looks through MyObjectList returning correct 
   function GetMyObjecty : TMyObject; reference.
 public
   property MyObject : TMyObject read GetMyObject;
   // Reference to list that contains all instance of TMyObjectList.
   property MyObjectList : TMyObjectList; 
end;

TStreets = TList<TStreet>;

TMyObjectList = TList<TMyObject>;
link|improve this answer
+1 because I like generics. But Delphi 2009 didn't have them so the OP can't use them. – Cosmin Prund Feb 14 '11 at 18:17
they were introduced in D2009 – David Heffernan Feb 14 '11 at 18:24
It really does not matter how you define the collection, it's how to deal with the linking problem. – Robert Love Feb 14 '11 at 18:47
feedback

Firts of all thanks for your help.

  • TCollectionItem

Objects mentioned above are TComponent type which at run-time I can move/drag (like TShape). TCollection Item is a collection of two points (P1,P2) I use to check when the shape dragged is collinear to one of those points. For each single item I can have one or more TShape on the same line. I need to keep track of shapes which belong to a specific line. Es:

Shape1,Shape2 are collinear to Item[0].P1 and Items[0].P2 then Shape1 and Shape2 should "point" to Item[0]

Shape3 is collinear to Item[1].P1 and Items[1].P2 then Shape 3 should "point" to Item[1]

The third point is the center of the shape.

I need to work in this way because if Item[0].P1 and Items[0].P2 changed I must update Shape1 and Shape2 properties.

P.S Can you suggest me a good function to determine when 3 points (double type) are collinear in 2d? I have used this :

http://www.swissdelphicenter.ch/torry/showcode.php?id=2073

But seem not working. Should I trunc the decimal part of P1 and P2?

link|improve this answer
6  
You aren't supposed to answer your question with more information. You should edit the question to do that. Once you have done so, please delete this answer. As to the collinear question, that is a completely different question. Please ask a different question. That code at Torry's would need to test for zero up to a tolerance in order to work on a computer. – David Heffernan Feb 14 '11 at 17:48
1  
Your initial example was supposed to place TYourObjects onto TStreets, now you're talking about collinear points and keeping track of shapes. Please edit your initial question and tell us exactly what you want to do. Do you realize Robert just lost 5-10 minutes of his time answering an outdated and irrelevant question? – Cosmin Prund Feb 14 '11 at 18:16
Ops. Sorry. So consider as valid this: – marcostT Feb 14 '11 at 23:36
feedback

Your Answer

 
or
required, but never shown

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