Login
User Name:

Password:



Register

Forgot your password?
Any Smaug muds running?
Oct 5, 2024 4:34 pm
By Zedethar
SmaugFUSS 1.8/1.9
Sep 21, 2024 5:04 am
By Elwood
Bug: char_check( )
Aug 31, 2024 12:27 am
By GatewaySysop
Bug: move_char( )
Aug 30, 2024 3:52 am
By GatewaySysop
Bug: spell_animate_dead
Aug 25, 2024 10:48 pm
By GatewaySysop
Discord Websocket Server
Author: Khonsu
Submitted by: Khonsu
Mapout Fix
Author: Khonsu
Submitted by: Khonsu
Progfind command
Author: Khonsu
Submitted by: Khonsu
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
Users Online
DotBot, Bing

Members: 0
Guests: 5
Stats
Files
Topics
Posts
Members
Newest Member
492
3,803
19,667
599
AlvaV96693

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 >>