Developing My Game

About Monkey 2 Forums General Discussion Developing My Game

This topic contains 8 replies, has 4 voices, and was last updated by  cocon 1 year, 9 months ago.

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #8753

    Yue
    Participant

    I am a refugee in these forums poveniente of a missing city (blitzbasic.com) :D, and I have nowhere else to go. So I show you what I’m doing right now. The game is about a robot that lost its human friends as it enters the atmosphere of Mars. And after the accident has been expelled in an emergency capsule. The first target after the incident on the Red Planet is to get to the nearest shelter, as the only visual guide to accomplish this goal, can be guided by the vents from a base underground to reach the shelter. So the idea is to hurry up, as the dust storm is damaging your energy system and is crucial to your goal.


    I highly appreciate the constructive criticism of seasoned programmers like you. 🙂

    #8765

    cocon
    Participant

    Looks good, it seems that it has potential. My estimations on this would be something about adding more details to the world, even the most simple low poly rocks would do.

    But it depends on the mission goal, are you planning to create a full prototype from this? Or is it just for experiments?

    #8786

    Yue
    Participant

    Hello Cocon, thank you for your appreciation. I think you can do a lot of things to improve the scenario, but obviously I have no knowledge about how to do certain things.

    For example you could put rocks, but the correct way is that a rock that is some distance away disappears and then appear in a range of 360 degrees in the distance of the player. This way we would have 100 rocks that follow the player. But I do not know how to do this.

    So I try to focus on what I can do, a simple game based on my acquired knowledge.

    About the mission is very simple and can be improving. Initially after the accident, there is a dust storm on the red planet, so the robot has to reach an underground complex and its only way to get to this point is through the visualization of ventilation points that protrude on the surface. The more time you expose yourself in the storm and fail to reach, your energy system is affected by dust and your energy goes down until you lose the game.

    For now that is the first mmision, I plan to put background music and some sound in the steps of the player to release a demo. What I can offer is that other users can modify and improve the mission through scripts.

    Best regard.

    .

    #8788

    cocon
    Participant

    Don’t worry, knowledge is easy to acquire, you only need to take notes on what you want to do and then at some point you might find it somewhere in the internet. Asking at forums helps also because you can get direction on where to look.

    For example the problem of the distance is solved like this.
    http://www.blitzbasic.com/codearcs/codearcs.php?code=2739
    If you are interested to use 3D distance, you can do this:
    dx = x2 – x1
    dy = y2 – y1
    dz = z2 – z1
    sqr(dx*dx + dy*dy + dz*dz)

    Keep up the good work!

    #8793

    Hezkore
    Participant

    What language is this written in?
    And what’s up with the low FPS? hehe 🙂

    #8811

    Yue
    Participant

    Hi, @cocon.

    What I am trying to do is for example 100 rocks follow the player. That the rocks that fade the distance fade and randomly appear outside the range and then be visualized. It would be the only viable way to flood the land with many rocks that only rendered close to the player, and that could look like thousands.

    Hi, @hezkore, it’s BlitzMax… and Fps low for my card graphics is bad. 🙁

    #8812

    Simon Armstrong
    Participant

    Instead of blaming your graphics card maybe you should blame the number of particles you are drawing for your smoke effect

    #8813

    Yue
    Participant

    @Simon Armstrong,
    The problem is not the number of particles, the bottleneck is produced by the system of shadows, and is not a complaint, only a presentation on what is a gs 7100 of 256 megs.

    #8892

    cocon
    Participant

    Here is how it would work.

    View post on imgur.com

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic.