Graal Forums  

Go Back   Graal Forums > Development Forums > Future Improvements
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-07-2008, 09:15 PM
Rufus Rufus is offline
Registered User
Join Date: Jun 2004
Location: United Kingdom
Posts: 4,698
Rufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud of
Lightbulb Graal Controls.

From a player point of view (both new and old) the controls on Graal as a whole are extremely disjointed from the actual gameplay, and when you jump from server to server as much as people do, it becomes even worse. We have the global controls in the F3 options menu, which are very out of date and it only has a few basic options as you can see if you look at the first attachment. The majority of servers make use of these functions, such as movement, using A, S and D, but a lot do not.

On top of the basic functions the majority of servers obviously have their server-specific keys, such as Zodiac which has millions, and Classic that has Wave on W, Hug on H and Camera Change on C. Now on the two servers I've mentioned for example, there is no way of changing the keys that you are using, and you will only find them by exploring. On Classic there is a hidden chat command (terrible, terrible) for changing your keys, but not even the staff seem to know it. Classic is not the only server who falls victim to this, as nearly every single server has chat commands to change keys. Some servers have taken the inituative and added GUI interfaces for changing hotkeys, etc, which really annoys me. There are two pretty obvious reasons why they are a bad way of handling it:
  1. Custom key settings conflict with global and graal-set key settings.
  2. There should only be one area for the control of keys, both for consistency and to avoid huge confusion.

With those two reasons in mind, I've been kind of tampering with the idea of a new controls window; I've attached it below. My main idea was encorporating the global, local and Graal controls all into one control area. The blue keys represent Graal controls, the red keys represent global controls, and the green keys represent the local. I was thinking with all three key 'types' being placed into one area, there will be no conflicts like there currently are. The controls on each server would appear in the settings by default (set by the server) and the player would be able to pick and choose what they wanted on their keyboard; could make the controls different per server if they really wanted to.

I just think both visually and functionally, this might be a better way of handling the controls. I'm not a scripter though, so I don't know what might mess up in that department
Attached Thumbnails
Click image for larger version

Name:	old_graal_controls.PNG
Views:	2837
Size:	19.7 KB
ID:	45534   Click image for larger version

Name:	new_graal_controls.PNG
Views:	2368
Size:	22.2 KB
ID:	45535  
__________________
Quote:
Originally Posted by Loriel View Post
Seriously, you have ****-all for content and you're not exactly pulling in new developer talent, angling for prestigious titles should be your last concern.
Reply With Quote
  #2  
Old 08-07-2008, 09:21 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
I really like this idea. Though it would destroy quite some scripts. But I guess this can be avoided by making a new event for keychecks, just for the new configuration. I would love to see this added. Go go go Stefan!
__________________
Reply With Quote
  #3  
Old 08-07-2008, 09:25 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Inverness approves.
__________________
Reply With Quote
  #4  
Old 08-07-2008, 09:53 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I'll just say this, another MMO I've played does something very similar... the major problem with it is that you usually can't see the whole keyboard on a resolution of 800x600. 800x600 isn't really a major resolution anymore, but it's a pretty standard one that should still be taken into consideration.
Reply With Quote
  #5  
Old 08-07-2008, 10:12 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Pluffy approves.
__________________
Reply With Quote
  #6  
Old 08-07-2008, 10:24 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
With this, add a script function:
PHP Code:
bindfunction(idtextmulti);
Adds a function to the list of bind-able keys with the given id.
  
id (string) - The new button will have this unique ID.  If the ID already existsthe old button will be replaced with the new.
  
text (string) - The button's name will be displayed to the user as this.
  multi (bool) - If true, the function can be applied to more then one button.

Example: bindfunction(duck, "Crouch", 0);
This would add a button to the listen of buttons that would be labeled as "Crouch". 
Might want an unbindfunction(id), too.

As well as a function call:
PHP Code:
function onBoundDown(idtextcodekey) {}
Is triggered when a key that is bound with a function created by bindfunction() is pressed.
  
id (string) - The unique ID of the function.
  
text (string) - The text of the button (same text you put for bindfunction()).
  
code (int) - Keycode of the key pressed. (Just like onkeydown)
  
key (string) - The letter of the key pressed. (Just like onkeydown
Would be nice also if you made a similar call for onBoundUp() as well.

With these two added, everyone can use the same key configuration window. The bindfunction() functions will mostly be called when you log onto the server, and then will be unbound when you log off.

New functions would have to show up as unassigned buttons in another windows or part of the gui. Then just drag the unassigned buttons to a key on the keyboard.
__________________
Do it with a DON!
Reply With Quote
  #7  
Old 08-14-2008, 06:59 PM
Door Door is offline
Empress Door the Unhinged
Door's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 849
Door is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to behold
Consistency is a really important factor to helping people understand things! This is a good idea and I'm.. almost disappointed that it hasn't been done already. What keeps me from feeling disappointed is my distinct lack of surprise.
__________________
Reply With Quote
  #8  
Old 08-14-2008, 07:03 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
They're too busy working on their silly little poker games I suppose.
__________________
Reply With Quote
  #9  
Old 08-14-2008, 10:13 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm will become famous soon enough
I'm with Crono. Stefan doesn't care about Graal people at the moment. I wish he'd just make everything scripted so we can support the game on our own. As in, delete all the default Coded movement, display, RC, etc., delete Showstats outright, and publish a GScript version of same. He already basically deleted baddies when he went GS2, but never published the Baddy Script - I don't think he even removed the old variables to check how many of the No Clientside Baddies exist.

But that would require coming back and Handling Graal, and he might come back and look at the relative profits and decide the best way to Handle Graal is to shut it down. And even if he wound up selling Graal or publishing the serverengine, that'd just mean we'd have a bunch of codemonkeys all over the world working at cross-purposes and we'd wind up with as many distros as Linux in time...and Nobody would do this...
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #10  
Old 08-14-2008, 10:31 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Tyhm View Post
RC
Please no.
__________________
Reply With Quote
  #11  
Old 08-14-2008, 10:45 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
__________________
Reply With Quote
  #12  
Old 08-14-2008, 11:01 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
If you look closely at the keys rufus marked out, they are standard ones that any keyboard has.

Even the ever so popular CS/CSS don't follow the Swedish keyboards.
__________________
Reply With Quote
  #13  
Old 08-14-2008, 11:07 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
If the keyboard layout is scripted(which I imagine it would have to be, since you'd need coordinates of each button), then making different layouts wouldn't be terribly hard. QWERTY is standard though, what would you expect?
Reply With Quote
  #14  
Old 08-15-2008, 12:03 AM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
You do not really need a graphical keyboard display, just an extendable list of assignable functions.
Reply With Quote
  #15  
Old 08-15-2008, 09:14 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Most games simply use the list of assignable functions which would be easiest in short term.
__________________
Reply With Quote
Reply

Tags
graal controls, keys


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 10:05 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.