Page 5 of 6 FirstFirst ... 3456 LastLast
Results 41 to 50 of 54

Thread: RobotDuel - game for 2 players

  1. #41

    Re: RobotDuel - game for 2 players

    Oh yes of course, I will be a lot honored from that!

    Ciao,
    Roberto
    http://www.thinbasic.com

  2. #42
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: RobotDuel - game for 2 players

    Petr,

    what about an option to move camera inside the head of the robot?
    It will be like having first person game.

    A key to switch from first person view to automatic moving camera and the other way round.

    Ciao
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  3. #43
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: RobotDuel - game for 2 players

    Hi Eros,

    I will implement it.
    Maybe some kind of HUD ( Head-Up-Display ) will be introduced for this view.

    I will release next version of RobotDuel when TBGL 0.1.7 will be finished and out, to take advantage of its new capatibilities too.


    Thanks a lot,
    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  4. #44
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: RobotDuel - game for 2 players

    Ok, fine.

    We will be back 100% on the project at the end of August.
    In the meantime we are finishing help and bit of work on COM. Nothing more in next 2 weeks. We will release other 2/3 1.0.10.2 intermediate release.

    Ciao
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  5. #45
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: RobotDuel - game for 2 players

    Hi all,

    I'v updated the RobotDuel to version 0.1.7.

    At this time it has cosmetic changes only, functionality is the same.

    So what's new ? The model loading is now handled by TBGL module, so it is quite fast, function to calculate framerate is also gone and replaced with TBGL function.

    This version no longer needs the include files as before.

    I'm prepairing more radical changes, but it will take some time. The first person view is little bit tricky in mode for 2 human players, I will probably arange it with two viewports in future releases.

    Eros found a problem in one version of this release, so I discovered nasty bug in my TBGL module, fix will be in next release of tB

    Bye,
    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  6. #46
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: RobotDuel - game for 2 players

    Hi,

    new version is out! Eros inspired me by sending me sample program for PB, so I added sound to thinBASIC RobotDuel too. It is MIDI powered - so no need for extra sound files to download.

    Off course, if you don't want to hear the sound, you can disable it in options ( or turn off speakers )


    Bye,
    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  7. #47

    Re: RobotDuel - game for 2 players

    Great Work! ;D

    I discovered a bug, when I enable "Draw Chunk Effects" checkbox. The game freezes on initialation and show the following error. Otherwise it works perfect.

    error code 21
    description Expected comma ',' but found something else.
    line number 652
    line code TBGL_ROTATE ((I*10+GETTICKCOUNT))*CHUNKSIZE(I)*100,1,1,1

  8. #48
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: RobotDuel - game for 2 players

    Hi,

    thanks, RobotDuel was fun to code, and I got lot of important suggestions from friends on forum.

    Regarding problem - thank you for reporting it
    This problem was not always in the game, but latest thinBASIC changes a bit the way it was meant to be parsed, so you need to enclose all parameters with parenthesis.

    I will correct this issue and repost new version ASAP


    Thanks !,
    Petr

    P.S. If you want to get it working now and enjoy chunk effects, please just change the problematic line to:
    [code=thinbasic]
    TBGL_ROTATE ( ((I*10+GETTICKCOUNT))*CHUNKSIZE(I)*100,1,1,1 )
    [/code]
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  9. #49
    Super Moderator Petr Schreiber's Avatar
    Join Date
    Aug 2005
    Location
    Brno - Czech Republic
    Posts
    7,128
    Rep Power
    732

    Re: RobotDuel - game for 2 players

    Updated to 1.7.3 - there were some compatibility problems with MOD function.
    Too bad, 153 downloads looked cool


    Petr
    Learn 3D graphics with ThinBASIC, learn TBGL!
    Windows 10 64bit - Intel Core i5-3350P @ 3.1GHz - 16 GB RAM - NVIDIA GeForce GTX 1050 Ti 4GB

  10. #50
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: RobotDuel - game for 2 players

    Thanks Petr.

    I will update TBGL Bonus Pack present in thinBasic download area very soon.

    Ciao
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

Page 5 of 6 FirstFirst ... 3456 LastLast

Similar Threads

  1. Game: Game modes
    By Michael Hartlef in forum CM contest 2009
    Replies: 16
    Last Post: 05-10-2008, 04:58

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

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