Author Topic: The overall project status?  (Read 7996 times)

0 Members and 1 Guest are viewing this topic.

LAZ

  • Guest
The overall project status?
« on: March 18, 2004, 05:51:01 AM »
I am a big fan of the SCI studio project. I spend so much time on surfing the web, trying to find any working software for Sierra games resource extraction. I found nothing that works (i mean there are some tools, but they are so 5h!77y), the SCI is really nice. IMHO this tool is really cool (its author is really advanced programmer), but yes its main problem it is not commercial, i mean it is not even a shareware. In this case why making this project that HEAVY, i mean there so many features included (graphic and text editing, etc), but most of them are useless. I doubt that someone will use SCI to make a professional game, i think that most of the users use SCI for resource extractioning only. In this case the project can be kind of modified.
 I am caonstantly looking for any updates and i just realize that project is actually closed. It was mentioned in one of the news that the support for SCI32 is done, and it works with graphics, etc. Probably it is not a bad idea to make it as it is, do not include so much extra features, the simple resource viewer or converter (even console version) i mean it converts the resources or extracts them, it will be just fine, and what most of users expects and waits for. If there is something done, but there is not time for alpha release, is there any other ways to keep an eye on how the project goes? Brian do not waste your time, but do not forget about us :)))

P.S. By the way, for those who uses the SCI for resource extractioning and game developing. How many of each of you. I am personally use it for resource extractioning.  



Offline Chris Cromer

Re:The overall project status?
« Reply #1 on: March 18, 2004, 08:49:33 AM »
Lot's of people have been developing games in SCI now, so please don't assume that it is only used for extracting resources.

About going commercial or shareware... commercial isn't really something he could legally do and would cause lot's of problems considering he doesn't own any rights over the SCI engine. And going shareware means he would be giving up alot of rights to his code. This is why he open source gpl'ed it, to keep his rights to the source code of the studio, and not get in trouble for going commercial with it. I don't think there is any problem with the way it is being distributed at all.

As for your saying most of the features are useless, that is just because you are using it as an extractor which is not the reason SCI Studio was created in the first place. It was created so we could make our own SCI games, not so people could extract stuff.

As for making a professional game, it depends on what you mean. If you are talking about making money off the game, that would be illegal so of course nobody would be doing that. But if your talking about quality, then alot of people would be making greate quality games, and how good they are, is really in the eye of the beholder.

The project is not closed, it is still being worked on by Brian.

While you may not need all those extra features since you are just trying to extract stuff. We are actually trying to make our own games, and those features are needed for us. So let Brian finish them, and don't pester for him to just release it as is because doing so would mean it would buggy, featureless, and not as good as it could be if he finished it.

And if you read through this board you will notice that most posts here are about game design with SCI rather than extracting resources. So it isn't wise to assume that everyone is just wanting to extract resources just because that's what you are doing.
« Last Edit: March 18, 2004, 08:51:39 AM by Chris Cromer »
Chris Cromer

It's all fun and games until someone get's hurt then it's just fun. ;)

LAZ

  • Guest
Re:The overall project status?
« Reply #2 on: March 18, 2004, 10:43:41 AM »
Thanks for a reply. Ok, what i mean is that SCI do not need everything it has, other editors and tools can be used for graphical editing, text editors can be used for scripts writing, etc. When Brian tryes to include everything, it means that he makes everything himself, it takes time, and lots of human resources.
IMHO, imagine you run a program (SCI) and show it a game directory, it makes a directory with all the resources, ready to be used by other apps (lets say, the graphics is converted into bmps, gifs, whatever Brian prefers, the scripts are converted into txt, music into midi, mp3, wav, whatever). Now with using 3rd party componenets you are free to edit it as you like (There enough documentation on what how and where.). After you made all that, you simply run teh SCI, and it packs everything back. (As result, i think there has to be much less to be released.)  
I know, when a programmer is releasing some of the projects he personally interesteed in, he wants to make it just perfect, and usually he wants to include everything, but to be realistic: how much time will it take?
By the way, the point about non shareware is fair, but if the project is separated into parts, you can make shareware some of them (all the editing parts), while extraction can be under the current license conditions.
Probably i am not that interested in games, but using old SCI engine is same to using old DOOM (or even Wolf) engine to make 3d shooter. Except that i have not seen any engines for quest making up for now.

Offline Nychold

Re:The overall project status?
« Reply #3 on: March 18, 2004, 03:07:28 PM »
Quote
Thanks for a reply. Ok, what i mean is that SCI do not need everything it has, other editors and tools can be used for graphical editing, text editors can be used for scripts writing, etc. When Brian tryes to include everything, it means that he makes everything himself, it takes time, and lots of human resources.

You do have a point.  However, it's a rather poor one, in my opinion.  There's nothing, nothing worse than being forced to download and use a dozen different programs to do anything.  Try writing a Windows based program using nothing but a command line compiler, an icon creater, a BMP creator, a resource compiler, and a text editor to write both the source code and the resource files.  Sure, at first it's cool...if you have nothing else, but then switch to a program like Visual Basic or Borland C++ Builder and see which is easier. ^^  I think Brian is making the correct choice by putting everything in one big chunk.  Plus, it makes migrating from AGI Studio to SCI studio about 3 times easier.

Quote
I know, when a programmer is releasing some of the projects he personally interesteed in, he wants to make it just perfect, and usually he wants to include everything, but to be realistic: how much time will it take?

This is a very over-asked question here, to which everyone gets the same response:  It will take as long as it takes, so quit asking. ^_~

Quote
By the way, the point about non shareware is fair, but if the project is separated into parts, you can make shareware some of them (all the editing parts), while extraction can be under the current license conditions.

Not familiar with the utilities used in the source code, I see.  The graphics editing software uses file formats which have license requirements.  (Niether GIF, JPG, TGA, or PCX have free encryption licenses; only decryption).  Also, I'm not even sure about BMP.  Also, converting from a bitmap to a vector graphics picture in SCI would be a nightmare of a program and couldn't even be shareware (because again, the encryption of the file format for SCI would be illegal to sell.)  Sound file formats have similar requirements (ESPECIALLY Fraunhoffer MP3 files).  Ogg Vorbis is the only one I know of which does not have any royalty requirements for selling software, and that again does not covert to MIDI files easily.  Also, even the syntax highlighter for SCI studio has licensing agreements on it.  (I know...I had to agree to them to compile SCI's source code on my system!)  So, I'd say you should refresh what you know about file formats and legal licenses.

Quote
Probably i am not that interested in games, but using old SCI engine is same to using old DOOM (or even Wolf) engine to make 3d shooter. Except that i have not seen any engines for quest making up for now.

You haven't seen AGS?  It's probably the biggest Adventure Game Studio (AGS) around.  It's totally free if your games are free, and I think even if you want to sell the games it's free too.  And yes, it's already finished so you can quit asking when SCI Studio will be finished. XD

Offline Chris Cromer

Re:The overall project status?
« Reply #4 on: March 18, 2004, 08:48:40 PM »
First off, the tools built into SCI Studio are much better than the tools that come seperately. For instance the script editor, it has color coding which makes debugging and programming a whole lot easier.

And converting back and forth between formats would be a pain for Brian to do because of legal problems with different formats.

Quote
You haven't seen AGS?  It's probably the biggest Adventure Game Studio (AGS) around.  It's totally free if your games are free, and I think even if you want to sell the games it's free too.  And yes, it's already finished so you can quit asking when SCI Studio will be finished. XD
He isn't trying to make games. He is wanting to extract the SCI games resources...

SCI Studio is supposed to be to make it easier for us to make SCI games. Not so it will be easier for you to extract stuff. The only reason there even is extracting is because it could be of use to us who are making SCI games.
Chris Cromer

It's all fun and games until someone get's hurt then it's just fun. ;)

LAZ

  • Guest
Well
« Reply #5 on: March 19, 2004, 03:54:59 AM »
About graphical formats it was only the suggestion, and it was mentioned that:
>whatever Brian prefers.
(You know how these kind of problems are usually solved? If you need to include something you cad it as a trhird party plugin, which can do some tasks. I mean you can plug in the converter into gif, jpg, whatever, simply do not mention you are an author. :) ) Also i do not remember that i have sayd exactly which part should be shareware and which is free (Do I?), all I suggested is to split the projecty, but ok if you people find all_in_one_package  solution better, ok, it is your choice, I think it is only the question of taste. Only the problem is that it will take more time for Brian to release it. And do not blame me for a time questioning, (How long are you going to wait for a new release?)
> It will take as long as it takes, so quit asking. ^_~
Well, wait as long as it takes. :)


Offline Cloudee1

Re:The overall project status?
« Reply #6 on: March 19, 2004, 04:16:09 AM »
I am gladly waiting for something which I can use to CREATE games, rather than something that just extracts resources.

Ripping graphics from a game is a nice bonus to scistudio, but by far it is the least appealing feature, I would rather create than copy!

Because all you want to do is extract resources don't assume that is all anybody else does too. I would wager to guess that most people who actually use scistudio, use it to create.
« Last Edit: March 19, 2004, 04:20:47 AM by cloudee1 »
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

LAZ

  • Guest
Re:The overall project status?
« Reply #7 on: March 19, 2004, 06:21:46 AM »
As i told before:
>After you made all that, you simply run teh SCI, and it packs >everything back.

Nothing limits your creative ideas, imagine a full resource as an archieved file, you open it, and all resourcess are on the dirve, you edit them as you like, using SCI, Photoshop , WordPad :) Whatever, you simply edit them, you do not way them to be extracted everytime you apply to them. Less memory is needed (except space on a harddrive, but i have recently extracted all the graphics from larry7, and it took about 100mb). I do think it is much faster. Do you know how quake pakS it resources, same can be implemented here. I do not know guys, it is up for you and Brian to decide, but i think it is much faster and easier, and ofcoz it is simplier to implement. (Why nobody picked this point and only blame me :)).

Offline Chris Cromer

Re:The overall project status?
« Reply #8 on: March 19, 2004, 06:31:08 AM »
But there is a point you are missing. If he did decide to do this like your saying it would take even longer because then he would have to rewrite SCI Studio to do it in that way. So would you really prefer it to take longer to make them all seperate tools and to be just extraction and packing?
Chris Cromer

It's all fun and games until someone get's hurt then it's just fun. ;)

LAZ

  • Guest
:)
« Reply #9 on: March 19, 2004, 06:55:37 AM »
What can i say to make an extraction and intraction will not take long, by the way there is a source (tiny one) for extraction for SCI1 and SCI32, already released by another person. Intraction will not take long too. Separating tools - yes will take a little longer, but you will have a chance to work with SCI32 already? Don't you think it is worthable??? And why you think it will take longer (into pieces separation?, only the code review - that will be hard).

Conclusion. As i can see you people have already stable and certain way oriented community here, and I do not see any reason to continue this subject, sorry for thouse who was disturbed. All the bast in your game developing, hope to see some of your releases in the
NEAREST FUTURE. $ee Ya

Offline Chris Cromer

Re:The overall project status?
« Reply #10 on: March 19, 2004, 07:02:23 AM »
Quote
by the way there is a source (tiny one) for extraction for SCI1 and SCI32, already released by another person. Intraction will not take long too.
Those tools are very old and can only be used to extract, and other than Brian integrating/making his own tools to edit and create games, nobody else is working on creating SCI tools of this sort.

Quote
but you will have a chance to work with SCI32 already?
SCI32 games are not currently editable/creatable. SCI0 is the limit at this point in time. But after the next version of SCI Studio is released we can make just about any type of SCI game whether it be SCI0, SCI1, SCI32, or whatever other versions there are.

Quote
And why you think it will take longer (into pieces separation?, only the code review - that will be hard).
Have a look at the source code of SCI Studio, removing that much code that interacts with all the other code would take a long time. It isn't just a simple cut job, you have to be sure you are not cutting out the wrong code or code that interacts with other parts otherwise it would break everything. So naturally it would take alot longer because he would have to evalute every bit of code as it is removed.

Personally I am not really disturbed by this, but I don't think that doing those things would be good for the project and would only make things harder for the game developers as well as take longer for us to be able to use them. You did have some valid points, but those points don't outweigh what would be lost if they where actually done.
« Last Edit: March 19, 2004, 07:04:03 AM by Chris Cromer »
Chris Cromer

It's all fun and games until someone get's hurt then it's just fun. ;)

Offline JesseJames

Re:The overall project status?
« Reply #11 on: March 24, 2004, 07:07:25 PM »
Also (correct me if I am wrong) most of the next version of SCI Studio has been done. Brian is mainly doing bug fixes now and working on the way the SCI languages syntax.

Offline Chris Cromer

Re:The overall project status?
« Reply #12 on: March 25, 2004, 01:37:30 AM »
Well finishing SCI Studio isn't everything... he has to write template's, tutorials, documentation, etc...

There is more than just working on the studio. ;)
Chris Cromer

It's all fun and games until someone get's hurt then it's just fun. ;)

Offline JesseJames

Re:The overall project status?
« Reply #13 on: March 27, 2004, 07:25:46 PM »
Actually, I thought Brian had paused work on SCI Studio due to things happening in real life (Whatever that is).

Offline Brian Provinciano

Re:The overall project status?
« Reply #14 on: March 30, 2004, 02:28:59 AM »
Actually, I thought Brian had paused work on SCI Studio due to things happening in real life (Whatever that is).

Hrm... who's making these things up about me? What's happening in my real life? I'd like to know...

Anyway, I got busy with work and couldn't work on any of my other projects either. I was working on GBAGI, etc. Lots of things


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.057 seconds with 22 queries.