Author Topic: When to use scripting languages?  (Read 18770 times)

TSMI

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
    • Email
When to use scripting languages?
« on: January 08, 2013, 12:16:18 AM »
I'm in the early stages of a roguelike on the jvm, and progress has stalled a bit. At first I was writing a little "engine" in java, then calling it from jruby, but a number of issues cropped up (weirdly bad performance that I couldn't really profile from jruby).

so am now doing a re-write of the jruby stuff in java - I just added a "gamespecific" package to my engine and off I went. Stuff like colors, tile definitions, hardcoded overworld, items etc are already in data files. I feel like I might embed a scripting language at some stage - it's trivial to do in java - but I don't know what stage.

Anyway, people love bullet points, and I'd really appreciate if you could tell me, for each item, what should be scripted, what should be in java, and what should be in data files?

- menus (start, inventory, etc)?
- procedural level generators?
- quests?
- npc dialogue?
- AI?

tuturto

  • Rogueliker
  • ***
  • Posts: 259
  • Karma: +0/-0
    • View Profile
    • pyherc
Re: When to use scripting languages?
« Reply #1 on: January 08, 2013, 03:14:47 AM »
The usual answer is "it depends", more elaborated one is "it depends on what you want to do" :)

I would (more or less arbitrarly) use scripting for level generators, quests and AI. Menus would go into java side and npc dialogue into data files. But it really depends on how much of things you want to be able to change without compiling the java side and how flexible you want those things to be.
Everyone you will ever meet knows something you don't.
 - Bill Nye

TheCreator

  • Rogueliker
  • ***
  • Posts: 370
  • Karma: +0/-0
    • View Profile
    • Fame
    • Email
Re: When to use scripting languages?
« Reply #2 on: January 08, 2013, 07:15:05 AM »
Use scripts for:
- GUI
- quests
- NPC dialogs

As of GUI, it's pretty obvious I guess. There's nothing more annoying than having to recompile the project every time you want to move a button 1 pixel to the right.

It's good to use scripts for quests as it's always easier to write in a scripting language than in the language you use for the rest of the stuff. Making it easier to write quests, you end up having more quests in the game. However, you can also end up having too many simple and schematic quests, as this is what scripting languages typically encourage. Perhaps the optimal solution is to hardcode a few very sophisticated quests and put the rest in the scripts. It's up to you to decide.

If you use scripts for quests, you probably want to have NPC dialogs in the scripts as well. They are very closely related to quests, so why to store them separately? This is how it's done in my game and so far it's been fine.

The thing I'd strongly discourage is using scripts for AI. It would be too slow, too hard to debug and I don't see the need for tuning AI algorithms so frequently. Scripts won't do any good here.

Scripts for procedural generation? Might be a good idea, but you can live without it. If you feel the need to throw in some more decorations or treasures to your dungeon, you can as well do it in your "hard" code. It's not as painful as GUI at least.
Fame (Untitled) - my game. Everything is a roguelike.

kraflab

  • Rogueliker
  • ***
  • Posts: 454
  • Karma: +0/-0
    • View Profile
    • kraflab.com
Re: When to use scripting languages?
« Reply #3 on: January 08, 2013, 08:58:20 AM »
It makes me giddy that people use outdated languages that are slow to compile :P

If development speed is important, make everything a script except core elements that are unlikely to change and also areas where you feel compiled efficiency is needed.  Of course, you can always translate a script into the compiled language if need be, so probably the best bet is to script everything you can until it is in a ready state.

TheCreator

  • Rogueliker
  • ***
  • Posts: 370
  • Karma: +0/-0
    • View Profile
    • Fame
    • Email
Re: When to use scripting languages?
« Reply #4 on: January 08, 2013, 09:15:59 AM »
It makes me giddy that people use outdated languages that are slow to compile :P

It's better to have a language that's slow to compile than one that's slow to execute :P.

Quote
If development speed is important, make everything a script except core elements that are unlikely to change and also areas where you feel compiled efficiency is needed. 

"Making everything a script" you end up writing your script interface instead writing your game. Twice as much work and the effect is not guaranteed. Rather poor advice for development speed.
Fame (Untitled) - my game. Everything is a roguelike.

TSMI

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
    • Email
Re: When to use scripting languages?
« Reply #5 on: January 08, 2013, 09:52:03 AM »
Of course, you can always translate a script into the compiled language if need be

You can, but it's sometimes very painful.

Consider the following task "Load a csv file as a matrix and for every value, print it and its position"

in ruby

Code: [Select]
   
mat = Matrix[*File.open(filename).map do |l| CSV.parse_line(l) end]
mat.each_with_index{|element, y, x| puts "#{element} at #{x}, #{y}"}

in java (with a third party lib)

Code: [Select]
InputStream input = LevelReader.class.getResourceAsStream(fileName);
CSVReader reader = new CSVReader(new InputStreamReader(input));
List<String[]> mat = reader.readAll();

for (int x = 0; x < mat.get(0).length; x++) {       
    for (int y = 0; y < mat.size(); y++) {
        String  s = mat.get(y)[x];               
        System.out.println(s + " at " + x + ", " + y);
    }
}

« Last Edit: January 08, 2013, 10:04:15 AM by TSMI »

naughty

  • Rogueliker
  • ***
  • Posts: 59
  • Karma: +0/-0
    • View Profile
Re: When to use scripting languages?
« Reply #6 on: January 08, 2013, 11:30:47 AM »
jRuby and Ruby in general don't have a great reputation for speed. Clojure is pretty fast but a very different language to Ruby.

If the JVM is your primary concern it might be worth looking at Groovy or any of the other JVM languages.

If speed is your primary concern a C/C++ core with LuaJIT as the scripting language would be your best bet. There's a few 2D engines already that do this like Love, MOAI and so on. LuaJIT can be faster than Java so you can safely write more of your game in script without worrying about performance too much.

As for when and how to use scripting there's one primary model that seems to work the best. You have a small, fast engine written in your 'fast' language (JVM, C/C++ and so on) and then write most of the game logic in the scripting language. Anything that's too slow in script (e.g. A*, flood-filling) you move into the fast language. The key point is that you want the interface between the engine and the game to be as small and simple as possible or it becomes a nightmare to maintain.

SomeGuy

  • Rogueliker
  • ***
  • Posts: 64
  • Karma: +0/-0
    • View Profile
    • Email
Re: When to use scripting languages?
« Reply #7 on: January 08, 2013, 11:33:53 AM »
Since your game is being done in Java or Ruby, both are interpreted languages. So I understand them as a bunch of script files. So your game is already a scripted engine without you to have to implement it and without the game player have to recompile everything.

And thus, why mess creating a custom scripting engine if your game is already implemented as an easy-to-modify game?
Why create a custom scripting engine if I can go to source code and modify whatever I need without having to recompile?

TSMI

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
    • Email
Re: When to use scripting languages?
« Reply #8 on: January 08, 2013, 12:29:12 PM »
Since your game is being done in Java or Ruby, both are interpreted languages. So I understand them as a bunch of script files. So your game is already a scripted engine without you to have to implement it and without the game player have to recompile everything.

And thus, why mess creating a custom scripting engine if your game is already implemented as an easy-to-modify game?
Why create a custom scripting engine if I can go to source code and modify whatever I need without having to recompile?

Because you can't with java. java is compiled to byte code which is run on the jvm.

DarkGod

  • Rogueliker
  • ***
  • Posts: 137
  • Karma: +0/-0
    • View Profile
Re: When to use scripting languages?
« Reply #9 on: January 08, 2013, 03:56:18 PM »
Java, just like any language worth something, is not interpreted at all.
They all compile to bytecode and run on a VM.
Which may (or may not) be veyr very well made and very very fast.
HotSpot (the JVM) and luajit are examples of extremely fast VMs, in some cases beating pure C

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: When to use scripting languages?
« Reply #10 on: January 08, 2013, 06:48:22 PM »
I once thought there is nothing useful in scripting and it's an old school idea from time when compiling really was slow.

I still don't get scripting as a language, but I've thought it could be useful in static data for game objects and stuff. The problem in C++ is the way you need to fill struct style data. It's static and sometimes annoying if you have a lot of data (not to mention if the structure changes). With scripting you could enter only the data you need for that object and not only that, you could use abstract data and basic types with possible special data for each object to reduce the amount of data you need to enter.

ludamad

  • Newcomer
  • Posts: 25
  • Karma: +0/-0
    • View Profile
Re: When to use scripting languages?
« Reply #11 on: January 08, 2013, 06:58:22 PM »
I am in the process of migrating more logic in Lanarts from C++ to Lua. It's a real-time game so speed is much more of a concern, so I have to take care. I find though that even with major blocks written in C++, having a scripting language call into it is immensely useful for experimentation. With good scripting language bindings, you don't necessarily end up with less complex quests/etc.

The moment you hit a block that requires some behaviour you haven't exposed, write it in your compiled language and expose it. You should make an attempt to expose as generic as possible behaviour, but IMO there is nothing wrong with having hybrid scripted & compiled code. You can leverage the ability to reload scripts in real-time to tune your quest (or whatever you're scripting), and write parts unlikely to change in the compiled language.

kraflab

  • Rogueliker
  • ***
  • Posts: 454
  • Karma: +0/-0
    • View Profile
    • kraflab.com
Re: When to use scripting languages?
« Reply #12 on: January 08, 2013, 08:33:25 PM »
"Making everything a script" you end up writing your script interface instead writing your game. Twice as much work and the effect is not guaranteed. Rather poor advice for development speed.

You only need to write the interface to use a script once while you may need to rewrite the script's code any number of times.  Writing an interface is obviously not twice the work, and if you're getting a lot of practice it becomes easier and easier to the point where it's just completely natural to tack on the interface at the end.

tuturto

  • Rogueliker
  • ***
  • Posts: 259
  • Karma: +0/-0
    • View Profile
    • pyherc
Re: When to use scripting languages?
« Reply #13 on: January 08, 2013, 08:40:40 PM »
Anyway, people love bullet points, and I'd really appreciate if you could tell me, for each item, what should be scripted, what should be in java, and what should be in data files?

- menus (start, inventory, etc)?
- procedural level generators?
- quests?
- npc dialogue?
- AI?

Do you have a specific motivation for having scripted content or are you just trying it out for sake of trying it out (which is as good reason as anything else really)? Because you could just take the easiest one from the list, or the item that you need first and try with that. Instant gratification and learning experience. After the first try, think again to which direction to continue. (yes, I don't like to make big and detailed plans up front).
Everyone you will ever meet knows something you don't.
 - Bill Nye

TSMI

  • Rogueliker
  • ***
  • Posts: 65
  • Karma: +0/-0
    • View Profile
    • Email
Re: When to use scripting languages?
« Reply #14 on: January 09, 2013, 12:43:42 AM »
Anyway, people love bullet points, and I'd really appreciate if you could tell me, for each item, what should be scripted, what should be in java, and what should be in data files?

- menus (start, inventory, etc)?
- procedural level generators?
- quests?
- npc dialogue?
- AI?

Do you have a specific motivation for having scripted content or are you just trying it out for sake of trying it out (which is as good reason as anything else really)? Because you could just take the easiest one from the list, or the item that you need first and try with that. Instant gratification and learning experience. After the first try, think again to which direction to continue. (yes, I don't like to make big and detailed plans up front).

My main motivation is I find programming java tedious. Not as tedious as most other C-likes but still painful a lot of the time. However, it's fast, portable, has excellent tooling, and great profilers.

I guess tbh compilation speed is not a huge issue with java, it's pretty good at compiling only part of a project.

Anyway, I tore my hair out trying to embed jruby. The documentation is really shoddy. I'll leave it for now until it comes time for quests and complex AI. Just java and yaml.