just curious as to how you got your dialogs looking like that by the way, did you use something like irisskin, or did you actually manage to alter skin yourself, if so i am intetrested in how you did this.
RPG Inventor version 0.0.4.1 and the user guide is on my website -go on try it you know you want to
Job Vacancies: Artists are required for making graphical resources, which will include interface assets, tile sets, character sets, battler sets, window skins, panorama’s, weapons, icons, monsters etc. I am willing to pay money for talented artists, but you will need to prove your skills to me first, please send me a sample of your work, and identify your charges and I will contact you if I am interested.
The editor dialogs are all just c# .net forms. The game engine side uses whatever image you give it for that part of the gui. Keep in mind Windows 7 is doing the main layout on that dialog.
This post has been edited by lastend: Dec 3 2009, 12:50 AM
The editor dialogs are all just c# .net forms. The game engine side uses whatever image you give it for that part of the gui. Keep in mind Windows 7 is doing the main layout on that dialog.
are you using the x86 or x64 version, i have a x64 computer so i am going to try the new windows, because i am fed up of xp, it's not the first time i have had to re-install it this year lol Edit: also which IDE are you using is it Visual Studio 2008??
This post has been edited by jneul: Dec 3 2009, 01:37 AM
RPG Inventor version 0.0.4.1 and the user guide is on my website -go on try it you know you want to
Job Vacancies: Artists are required for making graphical resources, which will include interface assets, tile sets, character sets, battler sets, window skins, panorama’s, weapons, icons, monsters etc. I am willing to pay money for talented artists, but you will need to prove your skills to me first, please send me a sample of your work, and identify your charges and I will contact you if I am interested.
The editor dialogs are all just c# .net forms. The game engine side uses whatever image you give it for that part of the gui. Keep in mind Windows 7 is doing the main layout on that dialog.
are you using the x86 or x64 version, i have a x64 computer so i am going to try the new windows, because i am fed up of xp, it's not the first time i have had to re-install it this year lol Edit: also which IDE are you using is it Visual Studio 2008??
x86, but if you have x64 that would do even better on Win7 from what I've read on it. Yep I'm usesing VS08 for web design and games. Been waiting for VS10 to get out of beta in hope that it works a bit better with css. VS08 web sites in visual mode don't uses themes. I'm hoping they upgraded this.
This post has been edited by lastend: Dec 3 2009, 11:25 AM
Group: Revolutionary
Posts: 231
Type: Artist
RM Skill: Advanced
once i'm convinced its safe for my comp and won't lag, i'm sold. looks slightly complicated in comparison with 2k 2k3 XP or VX but hey its worth a shot.
are their any videos of how it works or like any way for the people who wanna use this can see what its like without having to install it?you should put a vid on youtube or something. i like how big you can make maps, make an ABS game on that and you just kicked legend of zelda in the butt XD
__________________________
Random Quotes
"I'd rather die than go to heaven." - William Murderface "We can teach the foolish what one ought to do or let them crash and burn and learn the hard way. After so many attempts in this life I've decided to sit back and enjoy the fireworks. Enjoy your hypocrisy world around me. " - Puck
About Me in a Sig!
I like Dragon Quest I like Pokemon I like RPG Maker I like Dethklok I am an artist I'm a Brony I like Ozzy I like Coffee I am a Roleplayer I like Gaming I'm Atheist I'm a Furry I'm a guy contrary to popular belief I'm from the USA I don't care for politics I'm gonna F***ing drink an F***ing can of F***ing BEAR! I'm a music lover Turth be told, I am Applejack DONE!
The scripting for the UI is going great. The system will allow full control over any GUI control. For users that don't know scripting there are many prebuilt gui objects that need no scripting.
loadUI() -- I made this in a function so its attributes drop out of memory once out of scope.
function resize() -- Called any time the engine window is resized, it is optional. _width = Engine.GetWindowWidth() _height = Engine.GetWindowHeight() _offsetX = _width - 160
I didn't like how the UI scripting was looking. So I put the UI objects in sub classes of the UI class. At any rate it looks better and is easier to remember syntaxs.
Group: Member
Posts: 60
Type: Developer
RM Skill: Skilled
There isn't much point in speculating too heavily on why it should be used rather than XP or VX.
It is obviously still in heavy and current development, and the best chance users of VX and XP have going for them, with a developer like this, is the power to actually say something and get what they want put into it.
Could you ever imagine emailing enterBrain with ideas and getting them, let alone anytime soon? I doubt it.
Here a list of all the dialog commands. Let me know if you want anymore added.
Information The UI Dialog class allows you control over dialogs. All of the following commands can be accessed by using [ UI.Dialog. ] You will have to register the UI class.
Functions
int Add(int x, int y, int width, int height ) Add a dialog. Returns the id of the created dialog.
SetCaption(int dialogID, string text, int fontColor, int height) Creates and enables the caption.
SetColor(int dialogID, int color) Set the background color of the dialog.
SetColors(int dialogID, int topLeft, int topRight, int bottomLeft, int bottomRight) Set the background blended colors of the dialog.
SetLocation(int dialogID, int x, int y) Set the dialog location.
SetSize(int dialogID, int width, int height) Set the dialog size.
SetFont(int dialogID, string faceName, uint size) Set the dialog font.
SetFontColor(int dialogID, int fontColor) Set the dialog font color.
...The site will be updated once we get a few more of the scripted objects documented...
Here are a few more UI objects that have been documented.
Information The UI Button class allows you control over buttons. All of the following commands can be accessed by using [ UI.Button. ] You will have to register the UI class.
Functions Add(int dialogID, int id, string text, int x, int y, int width, int height, string luaEvent, int Key) Adds a button.
Remove(int dialogID, int id ) Remove a button.
SetClickEvent(int dialogID, int id, string luaClickEvent ) Set the button click event.
SetLocation( int dialogID, int id, int x,int y) Set the button location.
SetSize(int dialogID, int id, int width, int height) Set the button size.
SetText(int dialogID, int id, string text) Set the button text.
string GetText(int dialogID, int id ) Returns the button text.
Information The UI Picture class allows you control over pictures. All of the following commands can be accessed by using [ UI.Picture. ] You will have to register the UI class.
Functions Add(int dialogID, int id, int x, int y, int width, int height, int xTex, int yTex, int wTex, int hTex, string filename) Add a picture to a dialog.
Remove(int dialogID, int id) Remove a picture.
SetLocation( intdialogID, int id, int x,int y) Set the picture location.
SetSize( int dialogID, int id, int width, int height) Set the picture size.
Information The UI Label class allows you control over Labels. All of the following commands can be accessed by using [ UI.Label. ] You will have to register the UI class.
Functions Add(int dialogID, int id, string text, int x, int y, int width, int height) Add a Label.
Remove( int dialogID, int id ) Remove a label.
GetText(int dialogID, int id ) Get a label text.
SetText(int dialogID, int id, string text) Set a label text.
SetLocation(int dialogID, int id, int x, int y) Set a label location.
SetSize(int dialogID, int id, int width, int height) Set a label size.
Information The UI Link class allows you control over links. All of the following commands can be accessed by using [ UI.Link. ] You will have to register the UI class.
Functions Add(int dialogID, int id, string text, int x, int y, int width, int height, string luaClickEvent) Add a link.
Remove( int dialogID, int id ) Remove a link.
GetText(int dialogID, int id ) Get a linktext.
SetText( int dialogID,int id,string text) Set a linktext.
SetLocation( int dialogID,int id, int x,int y) Set a linklocation.
SetSize( int dialogID, int id, int width, int height) Set a link size.
SetClickEvent(int dialogID, int id, string luaClickEvent) Set the link click event
Good news the UI scripting system is just about in beta status. I have coded all the wrappers to the appliction, and have documented them. The new UI documentation will be posted to the projects website once I complete each UI object example.
Moving forward I have move myself to the scripting IDE side of things. So far I have added many new options. Like colored syntaxs, text zoom, and auto complete syntax. This is now an other area that I will post more information on once its documentation is done.
This post has been edited by lastend: Jan 19 2010, 03:17 AM
Kits that I'm working on. [Unity3D 4.0] LTTP/Minish Cap - I don't have time for custom gfx like what the pze folks are doing but I will try and work on some enhanced LTTP graphics.
Main PC Core i7 3820 overclocked @ 4.8GHZ Galaxy: Nvidia Geforce GTX 680 GDDR5 2GB Asrock X79 Extreme9 w' creative sound 64GB corsair platinum @ 1600MHZ Muchkin 128GB SSD(boot), OZKIN 2TB SSD, Western Digital GREEN 1TB HDD. Rosewill Lightning 1000W PSU OS: Funtoo Linux, Windows 8 (Virtual Machine)
iMac (March 2013) 3.4GHz Quad-core Intel Core i7, Turbo Boost up to 3.9GHz 16GB 1600MHz DDR3 SDRAM - 2X8GB 1TB Serial ATA Drive @ 7200 rpm NVIDIA GeForce GTX 680MX 2GB GDDR5