Click to See Complete Forum and Search --> : How to make something like Script#


code?
January 28th, 2009, 11:24 PM
How do I make a (whatever Script# (http://projects.nikhilk.net/ScriptSharp/) is)?

I have lots of functions for a game, but no real program that has wonderful intellisense. I know what Script# does, but I would like to make something like that for something else.

So, do you know what exactly this kind of thing is? An extension? What?

Traps
January 29th, 2009, 02:24 AM
Your in the c# forum, so I assume you want to write this in c#. You will need to create your own .exe Basically you will be creating your own editor. It will have a textbox, it will detect each keystroke, and based on that, it will show the names of your various functions. What you asked is pretty general, and honestly DOES NOT provide enough detail. Take a look at the c# IDE, and make your own version that "pops up" the various function names you've written for the various functions for your game.

I am assuming here you are wanting some kind of development environment similar to VS.

You will also need to write a compiler.......... Honestly what I think you want to do is FAR beyond what you can do.

code?
January 31st, 2009, 12:30 AM
So, how about something that can read the inside of a method/function?

Can I do it that way? That's all I really need. If I can read the inside of a method and get every statement, that's fine.

Mutant_Fruit
January 31st, 2009, 06:27 PM
NRefactory might help: http://mayaf.org/janett/wiki/NRefactory

code?
February 3rd, 2009, 03:16 PM
Oh goodie, how do I download it?

Something called SVN? I tried downloading something for Dl'ing google code, but never got around to working with it.