Author Topic: Benjamin Marty, I have a question.  (Read 6486 times)

GameDeveloper

  • Guest
Benjamin Marty, I have a question.
« on: 2005-10-13, 06:46:54 PM »
I am a hardcore user of your program, i have been for almost three years.  This development kit is so flexible it just releases the creative juices inside my brain.

I have one question, since I check your websites about once every day, is development of 2.0 of this kit going well?  Can you give me an update on maybe...what percent is complete?  If not I am fine with it.  I'm just pumped and ready to make certain sequals to all of my unique  games I have made with your program.
I am hoping the 2.0 version may satisfy those next iterations.

I appreciate any feedback, and if this is the wrong forum or what not, then I appoligize (sorry for my misspelling, i'm in quite a hurry).  

Thank you, and I look forward to the next Scrolling Game Development Kit.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Benjamin Marty, I have a question.
« Reply #1 on: 2005-10-14, 05:19:37 PM »
I confess that progress on 2.0 is slow.  This is partly because I have other projects going on and partly because I am doing other things (like playing games) in much of my free time.  But I do occasionally get a few hours to work on the kit, usually on weekends.  It's also partly because I am fixing and redesigning some aspects because I want to get it absolutely right.  In my most recent set of changes, I spent a week or two puzzling over how to get the XML to come out better (because XML is the main file format for SGDK 2.0 -- there is no more binary file format).  It was bothering me when I saw something like this (this is just an example, and doesn't represent the full XML format)
Code: [Select]
<Tileset name="main" />
<Tileset name="other" />
<Tile Tileset = "main" value="1" />
<Tile Tileset = "main" value="2" />
<Tile Tileset = "main" value="3" />
<Tile Tileset = "other" value="1" />
<TileFrame Tileset = "main" TileValue="1" FrameValue="2" />
<TileFrame Tileset = "main" TileValue="2" FrameValue="7" />
<TileFrame Tileset = "main" TileValue="2" FrameValue="5" />
<TileFrame Tileset = "main" TileValue="3" FrameValue="6" />
<TileFrame Tileset = "other" TileValue="1" FrameValue="3" />


I wished to see something like this instead:
Code: [Select]

<Tileset name="main">
 <Tile value="1">
  <TileFrame FrameValue="2" />
 </Tile>
 <Tile value="2">
  <TileFrame FrameValue="7" />
  <TileFrame FrameValue="5" />
 </Tile>
 <Tile value="3">
  <TileFrame FrameValue="6" />
 </Tile>
</Tileset>
<Tileset name="other">
 <Tile Tileset = "other" value="1">
  <TileFrame FrameValue="3" />
 </Tile>
</Tileset>


So I struggled with Microsoft's tools a bit (because they have some built-in features that generate XML, and I didn't know how to control it), but finally I was able to get it just right.  But it took more than a week to figure it out at the slow pace I have been working.

At least I am still making progress, though.  The pieces that are now done include:
  • Graphics editor -- woohoo windowed editor with alpha translucency and all! (This replaces the GameDev 1 tileset editor and introduces many new features)
  • Frameset editor -- allows you to merge graphics from multiple graphics sheets into a single set, and allows you to rotate and transform graphics in real time without storing copies of rotated graphics in your graphics sheet.  (There is nothing similar in GameDev 1)  This also allows you to define how tiles could overlap, drawing outside their normal rectangle.
  • Tileset Editor -- allows you to animate and re-map tiles.  I think I will also allow you to make tiles that show multiple frames at once (tiles composed of multiple frames) by setting the frame delay to 0 for frames that should be merged with the next frame.  (This is like GameDev 1 tile animation with extra features)
  • Counters -- This defines integer variables which will be used for various purposes including linking to tilesets to determine which frame of a tile is being displayed.  (This is like a simplified inventory management from GameDev 1.  I think the rest of the inventory features will be handled separately, but probably linked to counters.)
  • Maps and layers -- I have started work on maps and layers, but almost nothing is done yet.  It was at this point that I realized that the XML was coming out messy so I went back to fix it.

It's good to hear that people are looking forward to SGDK2 , and I look foreward to making significant progress on this project.  I am very pleased with the interest that people have shown in GameDev 1.x, and I expect SGDK 2.0 to be a big step above this that will get even much more attention, if I can manage to finish it this decade :).

GameDeveloper

  • Guest
Benjamin Marty, I have a question.
« Reply #2 on: 2005-10-14, 07:30:17 PM »
I see, I see.  It's great to know you're still quite devoted to this program.

All of the features that are already done sound great.  Keep up the good work.  This is really the only program I use as far as fuelling my creative side goes (and as far as games go).

I believe your Kit provides outstanding practice for those of us hoping to get into the business of games.

Keep working strong, and I'm sure you'll get it out soon :mrgreen:

P.S.  Thank you for the reply, I was checking back quite often only to see there wasn't any.

Gamar

  • Visitor
  • *
  • Posts: 7
    • MSN Messenger - sonic_legacy@hotmail.co.uk
    • AOL Instant Messenger - Gamesbond03
    • View Profile
    • http://s12.invisionfree.com/the_creators_world
    • Email
Benjamin Marty, I have a question.
« Reply #3 on: 2005-10-15, 07:38:04 AM »
Wow,that sounds great. I'm really looking forward to it!
I use Game maker a lot, SDKG seems more powerful though.

bat

  • Fanatic
  • ***
  • Posts: 234
  • Cheak out the B*t project
    • MSN Messenger - ethanbatmay@hotmail.com
    • Yahoo Instant Messenger - ethanbatmay
    • View Profile
    • The B*t project
    • Email
Benjamin Marty, I have a question.
« Reply #4 on: 2005-11-04, 09:39:13 PM »
it is, indeed.  (sgdk vs gamemaker i mean...)
~bat

bat

  • Fanatic
  • ***
  • Posts: 234
  • Cheak out the B*t project
    • MSN Messenger - ethanbatmay@hotmail.com
    • Yahoo Instant Messenger - ethanbatmay
    • View Profile
    • The B*t project
    • Email
Benjamin Marty, I have a question.
« Reply #5 on: 2005-11-16, 09:01:24 PM »
uh.. on the topic... how hard would it be to make the games for other gaming systems, not just computer?  Is it realisticly possible? I program a tiny bit and know how hard it is... & with the visual basic thing tied in... IS IT POSSIBLE? :?:
~bat

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Benjamin Marty, I have a question.
« Reply #6 on: 2005-11-16, 10:41:12 PM »
Anything's possible if you write a new engine, and I remember a while back somebody had an idea of how to get it onto X-Box using Linux (probably because SGDK uses Direct X, and maybe X-Box does too?  Seeing as how it's Microsoft?) Though I don't remember much about it.
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Benjamin Marty, I have a question.
« Reply #7 on: 2005-11-17, 06:49:21 AM »
Yeah, the biggest challenges in getting it to a game console system are finding someone with a development system that can target the console, finding someone with the time to make the necessary adjustments, finding someone who knows how to write code for the console system, and actually following through on the whole thing.  X-Box is probably one of the easier systems to target since it's DirectX-based, but still need all of the above.  Since GameDev and SGDK2 can "scale down" to simply be a level editor whose data can be used in another project, it should be relatively flexible, making it possible to use SGDK data in other environments.  But some features may be limited, especially GameDev 1.x scripting.  I think Windows is the only environment that supports COM and VBScript.  (SGDK2 "scripting" will be based on C# code and compiled into the game, which leaves open the possibility of running SGDK2 projects under Linux someday.  My other brother and I were actually chatting about this just yesterday, looking at the Mono project http://www.mono-project.com/Main_Page)