
Now, the yellow target spots represent the spots where people will end up in the battle area (they will be locked in those spots). The middle orange one represents the invisible battle_area area type.
Now, finally, here's my problem: How can I associate the battle area with it's target spots (where the players end up)?
I was thinking of doing it directly by location, because I'll have the battle_area type in the same position in each battle area. I mean, I could do it by the coordinates of the target spots related to the coordinate of their battle_area. Would that be a good way to do it? If so, how could I?
An easier way, which I do in Hunter, is simply to subclass the target spots from the area spots.
For example:
area
battle_area001
party1
party2
battle_area002
party1
party2
Then, you move the player's mob to the battle_area001 location, and then you move the combatants to the appropriate party# area there.
Eg.
//loop through all of the battle areas until you find an empty one here
player1.loc = locate(/area/battle_areaXXX)
player2.loc = locate(/area/battle_areaXXX)
for(var/mob/M in player1.troops)
M.loc = locate(/area/battle_areaXXX/party1)
for(var/mob/M in player2.troops)
M.loc = locate(/area/battle_areaXXX/party2)
You can easily adapt this to be more object-oriented, but I'm not about to launch into details... you've got the framework, so make it work right! =)