Author Topic: Stile 0.79 released  (Read 7103 times)

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Stile 0.79 released
« on: August 20, 2009, 06:11:42 PM »
It's a tile editor, nothing exciting but I thought I should tell about the new release.
http://koti.mbnet.fi/paulkp/stile/stile.htm

There is also C++ source code available, but windows.h is making it quite Windows-based. Hoping to replace windows file dialog some day (only part that needs windows.h).

corremn

  • Rogueliker
  • ***
  • Posts: 700
  • Karma: +0/-0
  • SewerJack Extraordinaire
    • View Profile
    • Demise RogueLike Games
Re: Stile 0.79 released
« Reply #1 on: August 21, 2009, 10:19:56 AM »
It's a tile editor, nothing exciting but I thought I should tell about the new release.
http://koti.mbnet.fi/paulkp/stile/stile.htm

There is also C++ source code available, but windows.h is making it quite Windows-based. Hoping to replace windows file dialog some day (only part that needs windows.h).


Check out QT for the file dialog. QT has been released open-source and is portable for most main operating systems. It takes a bit of building and there is an plugin download for visual studio. 

(I actually use it for my non-comercial professional work, although there is a comercial version available)
corremn's Roguelikes. To admit defeat is to blaspheme against the Emperor.  Warhammer 40000 the Roguelike

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: Stile 0.79 released
« Reply #2 on: August 21, 2009, 10:50:06 AM »
Check out QT for the file dialog.

I said elsewhere that I wouldn't want to use any gigantic GUI library that forces me to do things how that specific library wants. If there is like totally modular SDL file dialog in C++ source code then I might use it. It looks like I have to write one myself. I just hope it's not too painful:)

Etinarg

  • Rogueliker
  • ***
  • Posts: 424
  • Karma: +1/-1
  • Idea archivist and game tinkerer.
    • View Profile
    • Gedankenweber Blog (German)
Re: Stile 0.79 released
« Reply #3 on: September 29, 2009, 11:56:13 AM »
If you only want to navigate up and down through directories and select files it's easy, should be doable in a day or two.

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: Stile 0.79 released
« Reply #4 on: October 01, 2009, 09:00:03 AM »
If you only want to navigate up and down through directories and select files it's easy, should be doable in a day or two.

I wouldn't want to reinvent the wheel in this case. I find working with files difficult in C++ and I guess you have to think some stuff with file dialog to avoid possible disasters.