Author Topic: My new Place  (Read 8416 times)

Xgenome

  • Guest
My new Place
« on: 2001-04-20 02:24:00 »
I Have not been here in about 2 weeks Bought Some space and got my new Visual basic Language! I Just thought id say that I made A forum for my remake of FF8. I'am thankful To qhimm For giving me inspiration to do so! If any of you are big fans of FF8 then stop by and post some Things you think Might be helpfull..
 http://www.a-o-g.net/elitesearch/Forums/" TARGET=_blank>http://www.a-o-g.net/elitesearch/Forums/

halkun

  • Global moderator
  • *
  • Posts: 2097
  • NicoNico :)
    • View Profile
    • Q-Gears Homepage
My new Place
« Reply #1 on: 2001-04-20 07:32:00 »
Ok, lemme get this stright... FF8 remake in VB. Lemme give you some pointers about goofy projects, as I am the master.

1) Before announcing to the world your goofy project, make absolutly sure that the only thing standing in your way is your own modivation. For example, *my* FF8 project (creating a two-hour 3D fan movie of FF8) is currently holded because I'm too lazy to look though the data for the battle scenes to decipher thier meaning. Right now most everyone on the forum here is too busy with the FF7 breakthroughs to tear up FF8.

2) The "Field of Dreams" 'If you make it, they will come' type ideas are very hard to have any progress on. Often they don't.

3) For the love of God man, learn a real language. Not that I'm dumping on VB, well OK I am, but that particular "language" is nothing more than a leggo system for win32 apps. Leggos are great to play with, but you are not going to be making any bridges out of them anytime soon. Learn C or C++. It's free to download and run I'll even give you some pointers.

First get a POSIX C/C++ compiler. That MS VC++ is garbage. A good one is  http://www.delorie.com/djgpp/" TARGET=_blank>DJGPP

After you have that installed, grab Allegro, a free game programming lib. It's  http://alleg.sourceforge.net/allegro/" TARGET=_blank>here.

Even though Aleegro has OpenGl in it, you can get a free do-all 3d engine called  http://crystal.linuxgames.com/" TARGET=_blank>Crystalspace  take a look at that.

Then, after that, can you tear apart the battle scenes and tell me what thier structure is. I'm stuck ^_^

-halkun


Sir Canealot

  • *
  • Posts: 900
    • View Profile
My new Place
« Reply #2 on: 2001-04-20 16:30:00 »
Hey is the Borland C++ Builder standard any good? I got lent it....


eerrrr

  • *
  • Posts: 1020
    • View Profile
My new Place
« Reply #3 on: 2001-04-20 20:34:00 »
ohhh, making bridges is the best bit of lego....

halkun

  • Global moderator
  • *
  • Posts: 2097
  • NicoNico :)
    • View Profile
    • Q-Gears Homepage
My new Place
« Reply #4 on: 2001-04-21 14:06:00 »
Sure little bridges for your hotwheels cars. I wouldn't take my 1999 Kia Sephia over a bridge made of the stuff.

Qhimm

  • Founder
  • *
  • Posts: 1996
    • View Profile
    • Qhimm.com
My new Place
« Reply #5 on: 2001-04-21 15:30:00 »
Hmm... how come I end up at John J Thomason's religious forums when I follow that link? Seems a tad odd.  :)

The Skillster

  • *
  • Posts: 2284
  • Loving every Final Fantasy
    • View Profile
My new Place
« Reply #6 on: 2001-04-21 15:42:00 »
haha  :D
your right as well!

Caddberry

  • *
  • Posts: 1988
    • View Profile
    • http://animenfo.com/
My new Place
« Reply #7 on: 2001-04-22 10:21:00 »
Who the hell i John J. and why the hell would you post something like that....

My new Place
« Reply #8 on: 2001-04-24 01:30:00 »
John J. Jingleheimer Smith?

ffgriever

  • *
  • Posts: 74
    • View Profile
My new Place
« Reply #9 on: 2001-04-24 02:44:00 »
Another Brother John's dirty trick...

dagsverre

  • *
  • Posts: 323
    • View Profile
    • http://ffsf.cjb.net
My new Place
« Reply #10 on: 2001-04-24 22:31:00 »
C++Builder? Depends how you look on it. The compiler is incredibly good and follows the newest C++ standard thightly as well, better than GCC follows it (of course VC didn't even enter the competition in this area). Just be sure to turn off any nasty add-ons to the language in the compiler settings.

The build system suck, compared to VC at least. Code navigating is great though, Intellisense and you can Ctrl+Click a word and the editor takes you to the declaration (even if it's a class deep in the internal libraries). It's a bit too centered around building graphical applications with the Delphi library, I wouldn't recommend using it for that as if that is what you want to do then Delphi is a much better tool for the job. If you want to develop something else you do get a sense that you're using the tool for something it's not designed for.

Oh, and the integrated debugger has it all, nothing to complain on there.

To get the excellent (and free!) Borland C++ compiler, download it from http://www.borland.com" TARGET=_blank>www.borland.com  (it's called "Borland command-line compiler version 5.5" or something). Compared to DJGPP (which really is GCC) I would say that it is faster, better and more standard compliant, though DJGPP has a better build system (you probably get autoconf and automake for your makefiles there while you have to write the makefiles manually using BCC).