Login
User Name:

Password:



Register

Forgot your password?
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
SWRFUSS 1.4
Author: Various
Submitted by: Samson
Users Online
DotBot, Google

Members: 0
Guests: 28
Stats
Files
Topics
Posts
Members
Newest Member
488
3,788
19,631
595
Khonsu

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » Codebases » SWR FUSS » Reverse Exit
Forum Rules | Mark all | Recent Posts

Reverse Exit
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Feb 16, 2010 11:12 am   
Go to the top of the page
Go to the bottom of the page

Banner
Magician
GroupMembers
Posts169
JoinedNov 29, 2005

 
I'm trying to acquire the reverse of a given exit, say, if supplied with west, it'll return east, where west is 3 and east is 1. Between rev_dir[] and get_exit_to(), I believe there is a simple way to do it, but without proper comments on the functions I have been unable to figure it out.

Post is unread #2 Feb 16, 2010 11:26 am   
Go to the top of the page
Go to the bottom of the page

David Haley
Sorcerer
GroupMembers
Posts903
JoinedJan 29, 2007

 
Something like:
int exit_num = ;
EXIT_DATA* exit = get_exit(current_room, exit_num);
ROOM_INDEX_DATA* to_room = exit->to_room;
ROOM_INDEX_DATA* from_room = get_exit(to_room, rev_dir[exit_num]);
printf(to_room == from_room);


See also find_door for how to resolve exit names to exit numbers. (That should really be in its own function, but whatever.)

Post is unread #3 Feb 16, 2010 11:46 am   
Go to the top of the page
Go to the bottom of the page

Banner
Magician
GroupMembers
Posts169
JoinedNov 29, 2005

 
Marvelous. I appreciate it.

Pages:<< prev 1 next >>