Search the web
Sign In
New User? Sign Up
nakedmud · NakedMud Developer's Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 385 - 414 of 1722   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
385
Well, the problem here is that I seem to have gone quite overboard in my implementation. It meets my needs, sure, because I'm trying to maximise my Python...
btakle
Offline Send Email
Feb 1, 2006
10:56 pm
386
This is fairly minor, but I like clean-looking implementations of stuff as long as it doesn't forgo (much) speed or functionality. Also, as I said in another...
Brian Takle
btakle
Offline Send Email
Feb 1, 2006
11:02 pm
387
This seems pretty useful to me, and I hope it will be to someone else too. I am extending the hooks functionality to include Python functions. The way it works...
Brian Takle
btakle
Offline Send Email
Feb 1, 2006
11:30 pm
388
For no reason whatsoever, other than it seemed easier intrinsically, all of my new code where I once would have used a bitvector I have started using the...
Travis
rahf_lives
Offline Send Email
Feb 2, 2006
3:09 am
389
It's good to know others are out there trying to divorce from C as much as possible (although C certainly has it uses!), and it's good to know that my efforts...
Brian Takle
btakle
Offline Send Email
Feb 2, 2006
5:44 am
390
... The difference isn't huge, so if you're more comfortable with one rather than another, use the one. I personally like the BITVECTOR structure because it...
Geoff Hollis
silas_brogahn
Offline Send Email
Feb 2, 2006
6:13 pm
391
Oh dear, after fiddling with hooks.c for a while I became quite dismayed at the un-safeness of that code. If you accidentally call a hook with too few ...
Brian Takle
btakle
Offline Send Email
Feb 3, 2006
3:23 am
392
... dismayed at ... easier to ... I think you are nuts... hooks are a very deliberate thing to add- you don't usually add one copy and paste style like you...
Travis
rahf_lives
Offline Send Email
Feb 3, 2006
5:06 am
393
... Stand back, I'm feeling ornery! This is exactly what I'm talking about. As long as you feel like you're an invincible coder, then go ahead and do what you...
Brian Takle
btakle
Offline Send Email
Feb 3, 2006
6:18 am
394
heh, well I am glad to have you on the team! *thinks boldly that Geoff and Brian should team up for the next version release*...
Travis
rahf_lives
Offline Send Email
Feb 3, 2006
7:21 am
395
I definitely am not interested in polluting anyone else's project. I am content to make my own mess. However, over the night I have thought of a more...
Brian Takle
btakle
Offline Send Email
Feb 3, 2006
3:37 pm
396
Yeah, I agree hooks could use some work. There are problems with the current version for reasons that were pointed out by Brian. Mainly its finicky and...
Geoff Hollis
silas_brogahn
Offline Send Email
Feb 3, 2006
11:24 pm
397
... The thing is, the more I thought about it the more I came to agree with this position too. I think a stern warning will probably suffice, rather than ...
Brian Takle
btakle
Offline Send Email
Feb 4, 2006
4:27 pm
398
In light of the recent discussions on bitvectors I want to show both Geoff and Brian (and anyone else with an opinion) a problem I have run into that has...
Travis
rahf_lives
Offline Send Email
Feb 4, 2006
10:37 pm
399
These things can be hard to diagnose. Could you post the entirety of the file in question? I'd like to see the basic struct and how it is stored as well. -B...
Brian Takle
btakle
Offline Send Email
Feb 4, 2006
11:26 pm
400
... yeh figured as much- I can't even venture a guess as to whats going on and thats pretty rare for me- I'm hoping I just missed something silly. //---- ...
Travis
rahf_lives
Offline Send Email
Feb 4, 2006
11:39 pm
401
Problem #1: In deleteWeaponData() you should not be calling free(data->type)and free(data->range). The deleteBitVector() functions do that work for you, and ...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
1:47 am
402
... free(data->type)and ... you, and ... to me ... printf-alikes ... on the ... implemented ... does is ... Thank you! It seems that problem just needed a...
Travis
rahf_lives
Offline Send Email
Feb 5, 2006
3:02 am
403
... I wouldn't have thought that was the problem, but it does make a kind of sense in pointer logic, especially since you said the behavior was erratic. It...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
3:57 pm
404
... erratic. ... bytes ... Actually that was part of the problem but not the whole thing- the crashing was due to doublefreeing memory, but the bit-crossovers...
Travis
rahf_lives
Offline Send Email
Feb 5, 2006
4:47 pm
405
... This was intentional. I use static buffers lots (perhaps too much) when returning informative text. The motivation is to ease the garbage collection...
Geoff Hollis
silas_brogahn
Offline Send Email
Feb 5, 2006
6:07 pm
406
... That is actually a perfectly good way to handle the issue. I would guess the reason you got a warning about local values is that char bits[MAX_BUFFER] is ...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
6:29 pm
407
Oh, and my I add that after scrubbing quite hard through the bitvector.ccode I'm impressed with it. I wish it had been thought of 15 years ago when I first...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
6:31 pm
408
Alright, here is what I've done do the following files in order to make hooks work with Python functions: http://www.wylfing.net/mud/hooks.c ...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
6:42 pm
409
Caution: in order to get the hooks that are added in inform.c to cooperate, you need to switch the order of their arguments to match what hooks.c wants. -B...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
6:43 pm
410
Gah, I keep thinking of things I should have posted in the first place: The hooks.c I posted also addresses a bug I found that would probably never be ...
Brian Takle
btakle
Offline Send Email
Feb 5, 2006
7:20 pm
411
... looks perfectly legit to me. I personally would do the strduping *outside* the function -- don't have to do garbage collection as often that way. But...
Geoff Hollis
silas_brogahn
Offline Send Email
Feb 5, 2006
9:39 pm
412
Wouldn't you know, as I write, Geoff posts a response. Thanks for the information. I think providing a buffer to be filled would be much better too. (I...
Brian Takle
btakle
Offline Send Email
Feb 6, 2006
4:50 pm
413
Hello everyone and thanks for your time in viewing this message. I just downloaded and installed NakedMUD and I am having a few issues. Issues: ...
gizm080
Offline Send Email
Feb 7, 2006
9:13 am
414
... These warnings are probably nothing to worry about. See here: http://mail.python.org/pipermail/python-bugs-list/2001-November/008453.html The MUD crashes...
Brian Takle
btakle
Offline Send Email
Feb 7, 2006
2:43 pm
Messages 385 - 414 of 1722   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help