Truncation warning

Started by Dar, November 03, 2009, 07:18:10 AM

Sometimes ... you just get talkative. Or add too much of an emote and too much text together. And you get ... truncated. Which is generally no big deal, and I know many expert players know when to stop. And some clients prevent it somehow by themselves. But ... some players dont, and some clients dont. And personally I find it a bit jarring when I do it, or when others do it near me.

So ... a simple suggestion. A toggle option of truncation warning. Something like ... if you typed out that would be truncated. Whether a say or an emote, or a wish up, or a bug command. Instead of letting it go through, it would block it and return this echo (It would be truncated). Giving you the chance of editing things out if you so desired. Make it toggleable, so if someone doesnt care or doesnt have the problem, they can toggle it off and it'd work the way it does now.

I would use the hell out of this.
Quote from: Wug
No one on staff is just waiting for the opportunity to get revenge on someone who killed one of their characters years ago.

Except me. I remember every death. And I am coming for you bastards.

Quote from: AmandaGreathouse on November 03, 2009, 09:27:17 AM
I would use the hell out of this.

I, one hundred percent would use the hell out of this too.
Quote from: Marauder Moe on November 07, 2009, 08:28:40 PM
Quote from: Riev on November 07, 2009, 08:27:17 PM
Nothing like seeing a raptor as a "hooded figure" wielding a flail.

Clever girl...

I just wish that when speaking it didn't take the pre-emote length in mind.  I ALWAYS hit the limit while speaking and it's normally only by a few words so then I end up having to do:

say (continuing) ....whatever it was that got cut off.

So, yes.  I wish there was something and I do not like the idea of a warning though.  Then it will just delay the scene and cause me to have to go and rewrite what I want which would be a pain in the ass.

Just up the character limit that is able to go through for speaking.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

I too hate trunication, let my long-winded pcs be longwinded!


FuSoYa's example is something that happens to me in almost every scene. I admit to being very wordy at times, so I'm always having to split statements into two (or more) segments. Second nature for someone whose roots are in MUSH/MUX! Taking the action portion out of the equation would be a great change.

I'd like it if we could toggle the truncation off, personally, but I can see how this wouldn't be feasible.

Truncation is in place to prevent over-sized packets, which can crash the MUD.  That being said, I think the ability to toggle whether or not strings that would be truncated actually go through would be GREAT.
Quote from: ZoltanWhen in doubt, play dangerous, awkward or intense situations to the hilt, every time.

The Official GDB Hate Cycle

Quote from: Aaron Goulet on November 03, 2009, 01:19:10 PM
Truncation is in place to prevent over-sized packets, which can crash the MUD. 

Perhaps in some situations but I do not think that applies in this one Aaron.  (Granted I'm not a programmer/coder)

I think it's an issue that NOBODY wants (well very few might but the majority do not) 4-5-6-7 sentence paragraph emotes.

I think in the case of talking though when the emote action is added to the speech it can make it so you have barely any room to actually say what you are trying to say.

I petition that this gets bumped up or the emote tags in say/talk/whisper/et cetera are not counted against the total characters allowed in conversation.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

Quote from: FuSoYa on November 03, 2009, 02:35:20 PM
Quote from: Aaron Goulet on November 03, 2009, 01:19:10 PM
Truncation is in place to prevent over-sized packets, which can crash the MUD. 

Perhaps in some situations but I do not think that applies in this one Aaron.  (Granted I'm not a programmer/coder)

I think it's an issue that NOBODY wants (well very few might but the majority do not) 4-5-6-7 sentence paragraph emotes.

I think in the case of talking though when the emote action is added to the speech it can make it so you have barely any room to actually say what you are trying to say.

I petition that this gets bumped up or the emote tags in say/talk/whisper/et cetera are not counted against the total characters allowed in conversation.

Brandon

Sorry, let me clarify on what I was trying to say:  The game has a set input buffer size;  you get the truncation message when your sent input exceeds the buffer.  It's not a restriction put in place to reduce emote lengths; it's built into all Diku-based MUDs, regardless of input type.
Quote from: ZoltanWhen in doubt, play dangerous, awkward or intense situations to the hilt, every time.

The Official GDB Hate Cycle

Quote from: Aaron Goulet on November 03, 2009, 02:57:13 PM
Quote from: FuSoYa on November 03, 2009, 02:35:20 PM
Quote from: Aaron Goulet on November 03, 2009, 01:19:10 PM
Truncation is in place to prevent over-sized packets, which can crash the MUD. 

Perhaps in some situations but I do not think that applies in this one Aaron.  (Granted I'm not a programmer/coder)

I think it's an issue that NOBODY wants (well very few might but the majority do not) 4-5-6-7 sentence paragraph emotes.

I think in the case of talking though when the emote action is added to the speech it can make it so you have barely any room to actually say what you are trying to say.

I petition that this gets bumped up or the emote tags in say/talk/whisper/et cetera are not counted against the total characters allowed in conversation.

Brandon

Sorry, let me clarify on what I was trying to say:  The game has a set input buffer size;  you get the truncation message when your sent input exceeds the buffer.  It's not a restriction put in place to reduce emote lengths; it's built into all Diku-based MUDs, regardless of input type.

Yes, but I believe it can be increased with no noticeable problems to the game. 

Any input Morgenes on rather this would decrease the game performance or something like this?

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

I don't believe increasing the buffer is such a black and white issue that it's just a matter of looking at whether it can be coded or not (much like other stuff).

There are pros and cons, most of which have nothing to do with stress on game performance.
Quote from: LauraMars on December 15, 2016, 08:17:36 PMPaint on a mustache and be a dude for a day. Stuff some melons down my shirt, cinch up a corset and pass as a girl.

With appropriate roleplay of course.

Our socket code gobbles up data being sent to the mud until it reaches a newline, it doesn't care how much data you send (though there ARE limits, they're much larger than the limit currently being discussed -- which exists, as others have posited, to prevent filibustering maniacs from filling your screen with nonsense).  I think a flag that toggles between "This is too long, maybe you should edit." and "This is too long, here's what we sent:" is a great idea.

-- X

Quote from: Xygax on November 03, 2009, 03:02:37 PM
Our socket code gobbles up data being sent to the mud until it reaches a newline, it doesn't care how much data you send (though there ARE limits, they're much larger than the limit currently being discussed -- which exists, as others have posited, to prevent filibustering maniacs from filling your screen with nonsense).  I think a flag that toggles between "This is too long, maybe you should edit." and "This is too long, here's what we sent:" is a great idea.

-- X

This is not the correct path to take I believe if only for the fact that I think it will slow down gameplay.  If I get a message that what I'm saying is not going to be sent through it will just frustrate me into taking extra time to edit it and either having to re-type it or something of that sort.

Just my opinion though.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

Well, that's why it would be a flag.  If you prefer simply having your stuff sent truncated, you shouldn't enable it.

-- X

Didn't see the flag part, my fault.

That being said, I still think the issue could be better resolved by not counting the characters in an emote when speaking towards the limit on speaking.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

Well, currently the truncation code happens well before actual commands are processed.  It could be reworked to do anything, of course, but it's not a one-liner.  Something like this flag concept would be.

-- X

I think this is a great idea and I would use it, especially on wishes.
Quote from: Oryxin a land...where nothing is as it seems
lol
wait wait
in a harsh desert..wait
in a world...where everything's out to kill you
one man (or woman) stands sort of alone
only not really
lol
KURAC

I like the idea. Might I suggest prefixing commands with t instead of toggling a flag?

tsay
ttell
temote
tphemote
twish

This would allow you to make your choices on the fly.
Wynning since October 25, 2008.

Quote from: Ami on November 23, 2010, 03:40:39 PM
>craft newbie into good player

You accidentally snap newbie into useless pieces.


Discord:The7DeadlyVenomz#3870

Quote from: The7DeadlyVenomz on November 03, 2009, 05:08:00 PM
I like the idea. Might I suggest prefixing commands with t instead of toggling a flag?

tsay
ttell
temote
tphemote
twish

This would allow you to make your choices on the fly.

Sorry but...

The bearded, business-casual dressed male shudders.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

No, you may not suggest that.  :)

As I said above, the current code doesn't know what the command is before it truncates.  Again, that could be added, or "peeked" easily enough, but I'd prefer a minimal change.

-- X

What's the current limit of characters to be sent before truncating?
New Players Guide: http://gdb.armageddon.org/index.php/topic,33512.0.html


Quote from: Morgenes on April 01, 2011, 10:33:11 PM
You win Armageddon, congratulations!  Type 'credits', then store your character and make a new one

Quote from: Xygax on November 03, 2009, 05:11:54 PM
As I said above, the current code doesn't know what the command is before it truncates.  Again, that could be added, or "peeked" easily enough, but I'd prefer a minimal change.

-- X

A hotfix might be nice temporarily but I do not think it does anything alleviate the underlying issue that some of us have. 

Maybe the problem is I just need to not emote when I'm talking with others... I mean, it's not like my character is making movements or anything while they talk.

I also do not know why I'm now getting all worked up over this.

Brandon
Quote from: Ghost on December 16, 2009, 06:15:17 PM
brandon....

you did the biggest mistake of your life

Quote from: FuSoYa on November 03, 2009, 06:08:58 PM
Quote from: Xygax on November 03, 2009, 05:11:54 PM
As I said above, the current code doesn't know what the command is before it truncates.  Again, that could be added, or "peeked" easily enough, but I'd prefer a minimal change.

-- X
A hotfix might be nice temporarily but I do not think it does anything alleviate the underlying issue with mudsex emotes that some of us have.

Brandon

Fixed!

What I did to solve it for myself (and it seems to always work):

Make your input box large enough for three lines to be typed inside.
Make sure you don't type more than will fit in the box.
Quote from: Twilight on January 22, 2013, 08:17:47 PMGreb - To scavenge, forage, and if Whira is with you, loot the dead.
Grebber - One who grebs.

If your emote is so long that it'd get truncated, definitely agree it shouldn't be sent, that's just a pain.

Don't mind long speeches been truncated though... it gives you an opportunity to interrupt a speech, which I've always thought was neat.

I think this is unnecessary for speech.
Quote from: FuSoYa on November 03, 2009, 10:03:06 AM
say (continuing) ....whatever it was that got cut off.
Just do this.

It would be useful if emotes that would be truncated were simply not sent by default.  Still, I think we need no toggle option.
Quote from: MalifaxisWe need to listen to spawnloser.
Quote from: Reiterationspawnloser knows all

Quote from: SpoonA magicker is kind of like a mousetrap, the fear is the cheese. But this cheese has an AK47.

And that's why -you- would not turn the toggle on.  I don't understand why you guys argue against the implementation of features that could potentially improve our game's UI for other people whose brains operate differently than yours, when the feature doesn't affect you at all, if you choose not to use it.  Truly, why do you care?

-- X

Quote from: Xygax on November 04, 2009, 04:54:33 PM
And that's why -you- would not turn the toggle on.  I don't understand why you guys argue against the implementation of features that could potentially improve our game's UI for other people whose brains operate differently than yours, when the feature doesn't affect you at all, if you choose not to use it.  Truly, why do you care?

I believe the reasoning is:

-- Staff time is a scarce resource.
-- This feature would not be valuable to me personally.
-- Other (possibly undefined) features would be valuable to me personally.
-- Therefore, I do not want staff time to be used on this feature.

Note that I believe this line of reasoning is often fully unconscious, and is expressed along the lines of "We don't need this."
Quote from: Vanth on February 13, 2008, 05:27:50 PM
I'm gonna go all Gimfalisette on you guys and lay down some numbers.

This debate reminds me of the color debate.

"We don't need no stinkin' colors!" / "We need colors!" Either way, you please everyone by adding the option for colors. And guess what, there's the option for colors in Arm2.

It's the same thing here. If you have trouble with truncating, turn it on. If you like the way it is, turn it off. And as Xygax seemed to say before, adding the toggle would be so simple that the generic "staff's attention should be focused elsewhere" argument wouldn't work.

So, I was able to emote something with 245 characters in it.

That's 24 ten letter words.
New Players Guide: http://gdb.armageddon.org/index.php/topic,33512.0.html


Quote from: Morgenes on April 01, 2011, 10:33:11 PM
You win Armageddon, congratulations!  Type 'credits', then store your character and make a new one

I never really saw a truncated emote. I just added it for ... the hell of it. Now ... emote+speech in one command, gets truncated all the damn time. And you cant prevent truncation for the emote+speech either. First of all due to code, and second of all simply to avoid a near 500 letter paragraphs (245 character emote, and 245 character speech).


So yeah. Just a toggle. It'll fix the problem for those who have it, and wont bother those who dont.

Gimf hit it on the head.  I think there is a simpler solution than the idea suggested.  I suggested an alternative for emotes and a workaround for speech.

However, I have more to say about it...

Having a truncation warning, I think it would be a BAD thing for speech, incidentally.  I believe you will see people getting the truncation warning, adding a ';' in the middle, at a good separation point, followed by adding in another 'say' command immediately after that ';' meaning that there is very little difference between having the toggle and just increasing the length of communication allowed.  Having it truncate speech without warning means that the person then has to scramble to get that last part out before someone interrupts them.  I think that the current length allowed by speech commands represents the characters' need to breathe occasionally and makes it possible for characters to be interrupted, which is a good thing for interaction.

A truncation warning for emotes?  Good.
Quote from: MalifaxisWe need to listen to spawnloser.
Quote from: Reiterationspawnloser knows all

Quote from: SpoonA magicker is kind of like a mousetrap, the fear is the cheese. But this cheese has an AK47.

Quote from: spawnloser on November 05, 2009, 05:25:27 PM
Gimf hit it on the head.  I think there is a simpler solution than the idea suggested.  I suggested an alternative for emotes and a workaround for speech.

However, I have more to say about it...

Having a truncation warning, I think it would be a BAD thing for speech, incidentally.  I believe you will see people getting the truncation warning, adding a ';' in the middle, at a good separation point, followed by adding in another 'say' command immediately after that ';' meaning that there is very little difference between having the toggle and just increasing the length of communication allowed.  Having it truncate speech without warning means that the person then has to scramble to get that last part out before someone interrupts them.  I think that the current length allowed by speech commands represents the characters' need to breathe occasionally and makes it possible for characters to be interrupted, which is a good thing for interaction.

A truncation warning for emotes?  Good.


How does the warning for says make it any different? It doesnt allow them to speak more then they now can. So they would "still" scramble to finish up, and they would "still" be vulnerable to interruption. The only difference, is that it'll feel less jarring and annoying to everyone, or at the very least ... me.

Shouldnt be too difficult to add either. Though ofcourse a real coder would know better. But it looks like it's just a single "if" statement, and another flag in the nosave array.

No, if you would get warned of the say being too long, you would have the option to split before it sent to everyone.  You could send it in a way that prevents interruption part of the way through.  If it just truncated and the person speaking had to scramble to get the rest out, it causes a delay that I think is GOOD because it, in many ways, represents the character having to take a breath after running his/her mouth for so long already.
Quote from: MalifaxisWe need to listen to spawnloser.
Quote from: Reiterationspawnloser knows all

Quote from: SpoonA magicker is kind of like a mousetrap, the fear is the cheese. But this cheese has an AK47.

How does this constitute "running their mouth for too long?"

Averting her gaze, the tressy-tressed woman opens her mouth as though to speak. She then shuts it. And then opens it again, and takes a deep breath. In a wavering, unsure tone, the tressy tressed woman says, in tress-accented sirihish, "No."
Talia said: Notice to all: Do not mess with Lizzie's GDB. She will cut you.
Delirium said: Notice to all: do not mess with Lizzie's soap. She will cut you.

That's a separate issue, the emote counting toward the limit.  I never said I was opposed to having the emote not count towards the limit.  I am just opposed to having a truncation warning for speech, as in the speaking part.
Quote from: MalifaxisWe need to listen to spawnloser.
Quote from: Reiterationspawnloser knows all

Quote from: SpoonA magicker is kind of like a mousetrap, the fear is the cheese. But this cheese has an AK47.

Quote from: spawnloser on November 07, 2009, 08:33:00 PM
That's a separate issue, the emote counting toward the limit.  I never said I was opposed to having the emote not count towards the limit.  I am just opposed to having a truncation warning for speech, as in the speaking part.

That's the problem. It 'isnt' a seperate issue. Due to code anyway. You notice how when you use emote commands in says, it doesnt add to trunctation limit? There is no "easy" way to make the emote and say be seperate commands. While the warning should be pretty easy.