Page 11 of 37 FirstFirst ... 91011121321 ... LastLast
Results 101 to 110 of 369

Thread: Welcome to PGD! Make your first post here in this thread

  1. #101
    PARKJIN
    Guest

    Hi, This is my first post

    I love Delphi

  2. #102

    New here and looking to share ideas with other Pascal game developers.

    Greetings everyone!

    I have been using Pascal ever since Turbo Pascal.
    I have produced commercial components for Delphi for over 16 years.
    I have recently been using Free Pascal Compiler to teach my children programming.
    We home school all of our 10 children and I am the computer programming teacher.


    My son is keen to make computer games and we weren't able to find any gaming engines we liked.
    So, as is typically the case, we started the process of making our own game engine.

    If anyone is interested in getting involved with our efforts or just curious to have a look, I maintain a publicly visible SVN repository.
    Just shoot me a message and I'll send you the credentials to have a look at what we are up to.

    Jason Wharton
    www.ibobjects.com

  3. #103

    Greetings everybody!

    I am a computer educator from South Africa. Recently we have changed our IT syllabus from java to delphi. I only taught one year of java programming and I was not very good at it. I am not teaching IT yet but would like to prepare myself. I stumbled on this site by searching for the game "machine flow" which seems like it was developed by a fellow South African, the username is Nitrogen and Nitrogen2. I am keen to learn this language as pascal was taught way back when I was in high school and I have always wanted to complete the dungeon game idea I had, something like nethack graphically but not as complex. I learn through play, I have tried many times before to learn programming but I never seem to get stuck in. Im hoping to be part of this community so that I may grow as a programmer. I dont expect any quick fixes or learn in 21 seconds type of thing other than hard work and discipline.

    What tips/advice do you have for me? Where should I start? I will do my best to check in with this forum everyday. Looking forward to meeting everyone.

    Cheers.

  4. #104
    Quote Originally Posted by kree8 View Post
    I stumbled on this site by searching for the game "machine flow" which seems like it was developed by a fellow South African, the username is Nitrogen and Nitrogen2.
    Interesting. I am a member of this forum for quite a while now but until now I never knew that "machine flow" was made by Nitrogen. I have its source code on my computer for several years but I never managed to compile it because of some third party dependency that I haven't manage to solve (couldn't find the missing library, don't remember which one it is).
    Unfortunately Nitrogen hasn't visited this site for about 5 years now. At least not by logging in. Has any other PGD member been in contact with him recently?

    Quote Originally Posted by kree8 View Post
    What tips/advice do you have for me? Where should I start? I will do my best to check in with this forum everyday. Looking forward to meeting everyone.
    If you are just beginning to learn Object Pascal and are interested in game development then I strongly recommend you star learning about these next basics:

    1. Classes: Object Pascal is Object-oriented programming language and as in most object oriented programming languages classes are most important feature. Now you probably know basic idea of what class is from JAVA but in Object Pascal classes are even more powerful than they are in JAVA (at least based on my limited JAVA knowledge - tried my luck in JAVA and gave up because its syntax doesn't seem logical enough to me).
    When used correctly classes can make your program very modular and lately I'm using them heavily in order to achieve data reusability. I'm in the process on writing a large tutorial about classes and their potential use in games (for to long now), but unfortunately I don't have as much free tine as I would like.

    2. Arrays: You probably already know about arrays from JAVA and what they can be used for. What you might not know is that in Object Pascal you also have a Dynamic array. Unlike static arrays which are pretty much like arrays in JAVA dynamic arrays does not have fixed size. In fact you can change their size at any time during your program execution.
    Object Pascal also supports multidimensional arrays and if they are declared as dynamic multidimensional arrays they have a rather unique ability in that their dimensions don't need to be of fixed size. Hard to explain without an actual example. In fact I don't know if any other programming language does support something like this out of the box.

    3. Streams: Streams are actually series of classes that serialize data access like reading from and storing data to files or memory for instance. Their best part is that they are interchangeable (same approach for reading or writing data in different kind of streams). They can be a bit more difficult to understand at first but once you figure them out you realize how powerfully they can be.

    NOTE: While Advance Reference Counting was introduced to Object Pascal I believe it can be a bit more tricky to make it work properly. Maybe this is because I haven't managed to grasp the concept entirely myself.
    If you will be developing with Delphi make note that ARC is only available for MacOS and mobile platforms (newer version of Delphi is required) while on Windows ARC is still not available out of the box.
    If you are using FPC/Lazarus make sure you select ARC based compiler (also available for windows) for ARC to be included in your program.
    So unless you will be specifically using ARC in your program which is not default for Object Pascal you will unfortunately have to learn how to manage your objects yourself. In short this means you will need to learn when to create and when to destroy objects. So transition from JAVA which relies on ARC could be a bit more difficult.
    But once you master this you will see that it has some advantages in comparison with ARC. Probably most notably advantage is that there are no Garbage collection hiccups which all gamers hate

    Anyway welcome to PGD!

  5. #105
    Maja199
    Guest
    I'm here because I have a problem with a program in Borland Pascal. Don't know where to post it, so hopefully I'm actual in the right forum.
    I'm from Germany.

  6. #106
    Quote Originally Posted by Maja199 View Post
    I'm here because I have a problem with a program in Borland Pascal. Don't know where to post it, so hopefully I'm actual in the right forum.
    I'm from Germany.
    Hi Maja. Welcome to PGD!

    If the program you are mentioning is a game related then you are in the right forum.
    But if the program is not game related then it might be better for you to use Stack Overflow (http://stackoverflow.com/questions/tagged/object-pascal) instead.

  7. #107

    Hi

    Hi,

    Im here because Im interested in simple games in Pascal and also I like making GUI so it good to have advice about making GUI in games and OpenGL or fast ones

  8. #108

    Introduction

    Hello everybody!

    I'm still new in this forum. I learnt Turbo Pascal 7 when I was a student - many years have passed since, and I found again the Pascal language in FreePascal and Lazarus nowadays. I would like create small (or professional) games with it, and I hope, I will find answers to my questions and I will publish my games.

    As ever: Tomi

  9. #109
    Hi to all, I'm a passionate pascal coder since TP5.0 now i'm interested by OpenGL and 3D programming in general. I am an active member of the GLScene Community

  10. #110
    1234hdpa
    Guest

    Hi Everybody

    Hi,
    My name is Thanh Phu.
    I'm a student and I'm working my final project for my studying about Pascal programing on Android device.
    I would love to learn more about Pascal programing and I hope I can finish my project as soon as possible.

Page 11 of 37 FirstFirst ... 91011121321 ... LastLast

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
  •