Author Topic: Object Heirarchys  (Read 6160 times)

Gila

  • Guest
Object Heirarchys
« on: 2005-03-23, 09:13:54 AM »
I was wondering what the heirarchy was in for the objects in SGDK.
For instance:
                          ProjectObj
         GamePlayer
     PlayerSprite       rMap
rDef


I showed how to access rMap and how to Access PlayerSprite.
It also how to access rDef of PlayerSprite.
I was looking at the scripting reference. As en example:
PathObjects. How would you go about accessing it? Would it be,
ProjectObj.GamePlayer.rMap.PathName ??
The reference shows the syntax for each of the object properties, but now how to properly get the object by heirarchy.

I was just wondering if there was some kind of graph or model that shows this.
Thank YOu
GIla

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
nope
« Reply #1 on: 2005-03-23, 10:32:09 PM »
No, there's no graph to show this, but the scripting reference has everything you need to know how to get objects.  It's just not particularily easy.  Just start where you think the object exists.  In this case, you assume the path object's immediate parent is the map object, so look in there to see if there is a Path object.  Lo and behold, there it is.  Be careful not to use rMap.Path, which returns the filename of the map.  Use rMap.Paths(PathName) which will return the path object referenced by either the name or ordinal index of the path on that map.
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Graph
« Reply #2 on: 2005-03-24, 06:30:51 AM »
Actually there is kind of a graph/tree on the main help contents page.  It doesn't show all the ways you can access one object from another, but it does show the basic structure of objects in GameDev.

Gila

  • Guest
Object Heirarchys
« Reply #3 on: 2005-03-24, 10:29:39 AM »
Awe Yes. Thank YOu very much. That was very helpful!! Both of you! The graph is kind of kool that helps also. So I ll just trust my instincts haha...
THank YOu...
Gila