Posted: Fri Dec 09, 2016 7:03 am
Can we get an object or class added to TADS for signs that follow the player around?
Not everything is in the same place in the manuals and some things are not completely clear. It's funny, when I downloaded the PDF reference manual for the MySQL datanase, and opened it, I almost swallowed my tongue to see it is a whopping 5,000+ pages. I thought that was overkill. Now I realize some things can require a lot more documentation to be comprehensive.pinback wrote:Post a code snippet that isn't working that you think should be working. I have never used TADS, and I guarantee you I will be able to point out what you're doing wrong, and where the manual explains what you're doing wrong, within 15 minutes.
Code: Select all
VerbRule(XThrow)
'throw' singleDobj
: XThrowAction
verbPhrase = 'throw item'
;
VerbRule(Trip)
'trip' singleDobj
: XThrowAction
verbPhrase = 'throw/trip item'
;
DefineTAction(XThrow)
execAction()
{
"Xthrow exc action";
}
;
fusebox: Fixture 'fuse meter breaker fusebox meterbox breakerbox box' 'breaker box'
"It's a standard electrical breaker box."
location = Meter_Room
;
+breaker_kitchen: breaker 'breaker kitchen' 'kitchen breaker'
target = Kitchen
dobjFor(Throw)
{
verify() { }
action() { "Throw - D Action"; }
}
iobjFor(Throw)
{
verify() { }
action() { "Throw - I Action"; }
}
;
Code: Select all
class breaker: Fixture
is_breaker = 1
location = fusebox
tripped = nil // user has not tripped this
on = 1 // thisd breaker is not off
target = nil // room or device it controls
dobjFor(Throw)
{
verify() { }
action() { "Throw - D Action"; }
}
iobjFor(Throw)
{
verify() { }
action() { "Throw - I Action"; }
}
;
You've spent so much time complaining about me and Billy Mays that you lose. Pinback has been here, saw all the other messages, so I have to presume he saw this one, and made no response. So much for his promise of half Domino's Pizza's response time.Ice Cream Jonsey wrote:If Pinner can't, I will put a $100 donation to the Blue Cross / Blue Shield in your name, Paul. That's how confident I am.pinback wrote:
Post a code snippet that isn't working that you think should be working. I have never used TADS, and I guarantee you I will be able to point out what you're doing wrong, and where the manual explains what you're doing wrong, within 15 minutes.
I did read the manuals. I took a piece of code that does work for a different verb and made the modifications for the new verb and it does not work. It's clearly obvious I'm doing something wrong and I do not know what it is.RealNC wrote:Yes, you are correct. It's broken. It doesn't work as intended. Nobody noticed this before, weird.
Well, either that, or you didn't really RTFM.
Code: Select all
modify VerbRule(Throw)
/* vocabulary empty on purpose */
:
execAction()
{
// ...
// your own code here.
// ...
// Call overridden method.
inherited();
}
;
I did have it in the listing I posted:RealNC wrote:I don't see a handler for Trip in your code.
Code: Select all
VerbRule(Trip)
'trip' singleDobj
: XThrowAction
verbPhrase = 'throw/trip item'
;
When you use the same verb sequence in another definition it uses the later one. I just couldn't figure out how exactly to override the original THROW verb handler.RealNC wrote:Also, your throw action cannot possibly work. It clashes badly with the default throw action. Your new Throw is "XThrow", but in your object, instead of handling XThrow, you handle Throw... So when the command is THROW X, which throw action does that refer to? Throw or XThrow? I don't know. So don't do that.
"THROW BATHROOM BREAKER" or"THROW BATHROOM SWITCH" or "TRIP BATHROOM BREAKER" or "TURN ON BATHROOM BREAKER" or "TRIP AIR CONDITIONER", "TURN OFF AIR CONDITIONER" etc. to indicate the person wants to change the position of the fuse box breaker switch from on to off or vice versa. This would be separate from THROW COFFEE POT AT REFRIGERATOR (which is a different and valid action elsewhere in the game).RealNC wrote:If you want to modify the default Throw action, you can modify its VerbRule. Leave the vocabulary empty to inherit the default one (which is "('throw' | 'toss') dobjList", defined in adv3/en_us/en_us.t):
Why on earth do you want to modify Throw though?Code: Select all
modify VerbRule(Throw) /* vocabulary empty on purpose */ : execAction() { // ... // your own code here. // ... // Call overridden method. inherited(); } ;
Code: Select all
dobjFor(Throw) asDobjFor(Trip)
This is essentially what I said. So I take it back, I am a TADS expert.RealNC wrote:Just add a new Trip action, and in your class for switch-like objects, implement a Trip handler, and map Throw to Trip with:
Code: Select all
dobjFor(Throw) asDobjFor(Trip)