Results 1 to 10 of 14

Thread: getting my stuff together

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    getting my stuff together

    hey everyone

    I hope im posting in the right section since im asking general questions and i probably cant get more general than what im gonna ask

    Basically im an engineer student an i had my first fully procedural-only programming course this year with pascal and i loved it; Problem is i was taught mainly files and pointers-structure handling algorithms but for making games Im clueless of where to start.

    So I felt maybe you guys could point me towards the right direction, i mean, i didnt even know how to use something that wasnt the command line for making stuff AND I STILL sort of dont.

    Im leaning towards using OpenGL stuff like glut but then everyone playing in windows would have to install the glut32.dll right? and that sucks...

    Maybe i should just grab a game engine? im assuming then that a game engine is a simplified means for making games (maybe not?) and i was going the wrong way? i dont even know...

    any advise is greatly appreciated, thank yall

    TL;DR: im n00b, know basics, where start advise pl0x

  2. #2
    PGD Staff code_glitch's Avatar
    Join Date
    Oct 2009
    Location
    UK (England, the bigger bit)
    Posts
    933
    Blog Entries
    45
    Depends on how much/what you have experience with. If you're starting from zero - I'd have no issues recommending SDL. Glut can be problematic as it is rather dated now, but since its' grub time - i'll fill you in on anything more specific if you need, once I get my share!
    I once tried to change the world. But they wouldn't give me the source code. Damned evil cunning.

  3. #3
    lol i just can use the language so thats my experience, im reading tuts on SDL thanks for that, i knew the graph unit wasnt gonna cut it for long

    this SDL thing is wonderful and easy to use, i just wish the compiler didnt complain so much now oh well, ill stop being retarded one of these days

  4. #4
    GLUT was created as a fast&dirty library to test OpenGL stuff. It's great for fast prototyping but not for final work.

    Currently I'm working in the wrapper to use the Allegro 5 library with Pascal (Allegro is a library similar than SDL but with different approach) and it's able to start an OpenGL context too. Windows works with issues (can't deal with pixel and text stuff yet) but OpenGL initialization, texture loading, user input, sound and time control seems to work. Linux works much better (as far as I can see, only prototype-drawing doesn't work correctly).

    I tell you just to show you an alternative to SDL.
    No signature provided yet.

  5. #5
    cool, that helped, for some reason i get an error with SDL from the compiler complaining about needing a unit and interface before "program" stuff and i dont even know what that is, guess its some of them fancy stuff from object oriented programming but OOP is out of my reach at least for this year

    so im actually downloading allegro.pas as i write to give it a try. sounds like one hell of a library and one hell of a project; id love to know what you mean by "there is pixel handling issues in windows", is it like it has problems working with single pixels or is it something with raster based stuff in general? id love to use allegro with my ubuntu installation but the free pascal compiler distributed in the software center is completely broken and i couldnt find a way to install it from rpm packages (yhea, im a n00b in linux too) so windows it is

  6. #6
    Quote Originally Posted by sacros View Post
    cool, that helped, for some reason i get an error with SDL from the compiler complaining about needing a unit and interface before "program" stuff and i dont even know what that is, guess its some of them fancy stuff from object oriented programming but OOP is out of my reach at least for this year
    Nope. It sounds like a basic level programming error, similar to this code would tell something crazy
    Code:
    then a=b if
    You'll always get help if you ask though, but then you need to refer the full error and part of the source code.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •