Author Topic: Star Trek 2 player v0.1 alpha  (Read 22032 times)

0 Members and 1 Guest are viewing this topic.

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Star Trek 2 player v0.1 alpha
« Reply #15 on: March 16, 2010, 05:20:57 pm »
This looks cool.  Good luck! :D

lol DJ. :P

Offline tifreak

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2708
  • Rating: +82/-3
  • My Kung Fu IS strong...
    • View Profile
    • TI-Freakware
Re: Star Trek 2 player v0.1 alpha
« Reply #16 on: March 16, 2010, 06:50:51 pm »
Interesting idea.

I too use the circles to show explosions. Man, this brings back a few memories, haven't touched the code to my star trek game in quite a while..
Projects: AOD Series: 75% | FFME: 80% | Pokemon: 18% | RPGSK: 60% | Star Trek: 70% | Star Trek 83+: 40% | TI-City: 5%

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #17 on: March 16, 2010, 09:39:39 pm »
Thanks for the support. Anyone who is interested in helping me test the alpha release can email me at [email protected]. I won't be done for a while, but I'll be needing testers. You will need a TI-83+/TI-84+ or compatible and a link and a friend to play with.

Also, here is another feature I plan on adding:

Without another calc detected, the program goes to a repair section. This will be calc specific. There will be one release for the 83 and another for the 84:

TI-83: Winning fights earns you repair points, which you spend to repair systems damaged in battle.

TI-84: Repairing systems takes a specified amount of time. Repair time elapses while the program is running in repair mode (You should know why this can't be done on the 83).

Offline trevmeister66

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1009
  • Rating: +14/-5
    • View Profile
Re: Star Trek 2 player v0.1 alpha
« Reply #18 on: March 16, 2010, 11:19:50 pm »
Hmm nice ideas. One question: Will the be a single player mode? Because I don't have the capabilities to get a 2nd person to play against, so I will be at a disadvantage when it comes to playing this game.
Projects:    nameless RPG: 1.0%  |  Reverse Snake v1.5: 100%  |  Secret Project: 5%  |  DUNGEON: 70%

My MW2 Blog <-- Please visit :)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Star Trek 2 player v0.1 alpha
« Reply #19 on: March 17, 2010, 12:57:50 am »
That makes me wish someone else where I live cared about calcs so I could play this :(

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #20 on: March 17, 2010, 02:13:07 am »
The first release will not have a SP part. In subsequent ones, AI is a goal.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Star Trek 2 player v0.1 alpha
« Reply #21 on: March 17, 2010, 02:21:37 am »
Nice to hear :)

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #22 on: March 17, 2010, 09:19:28 am »
Can someone please explain how to use the "sprite drawing" command in xLIB. Or is it possible to do it any other way, easier?

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Star Trek 2 player v0.1 alpha
« Reply #23 on: March 17, 2010, 02:01:36 pm »
Unfortunately, it is pretty much the only way in Celtic III and xLIB. I think Celtic III has another sprite command, though:

Code: [Select]
|05             | identity(5,"HEXSTRING",x,y,w,h,logic,flip,update_lcd)
|               |
|  PUTSPRITE    | Works just like the xLIB command real(1,...) except that
|               | the Pic and the coordinates on that Pic file are not
|               | defined.
|               |
|               | Instead, a string consisting of hex digits is used to
|               | define the sprite as inline data. For example, if you
|               | wanted to draw a black 8*8 block at the top-left corner of
|               | the screen with XOR logic and drawn immediately...
|               |
|               | identity(5,"FFFFFFFFFFFFFFFF",0,0,1,8,3,0,1)
|               |
|               | Useful for those that want to display sprites without the
|               | use of bulky image files.
|               |
|               | For large sprites, each byte goes LEFT first, then DOWN,
|               | so specifying "80FF0180000180000180FF01" would relate to
|               | such a perfect box 3 bytes wide and 4 pixels down.
|               |
|               |
|               |
|               |
|               |
|               |
|               |
|               | Note that any missing arguments will default to the value
|               | of zero (0) instead of 32 as in xLIB.

Otherwise, if you absolutely want to stick to xLIB here's the xLIB command in more detail, explained in Celtic III readme (since Celtic III offers 99% backward xLIB compatibility):
Code: [Select]
|01             | real(1,x,y,w,h,pic_n,pic_x,pic_y,logic,flip,update_lcd)
|               |
|  DrawSprite   | Draws a sprite on the screen at (x,y), being the top-left
|               | corner of the sprite.
|               |
|               | W = width in bytes. i.e. 1=8pixels, 2=16pixels, etc to 11=.
|               | H = heigth of sprite in pixels.
|               |
|               | pic_n refers to the pic # to source the sprite from. Pic1=1
|               | , Pic9=9, Pic0=10. Use your imagination for other numbers.
|               |
|               | pic_x and pic_y are the top-left coordinates to start
|               | sourcing the sprite from. pic_x MUST be 0 thru 11 as they
|               | are "aligned". On-screen, this is a multiple of 8.
|               |
|               | "logic" is a number 0 thru 3, refers to sprite drawing
|               | method to employ.
|               | 0:Overwrite
|               | 1:AND
|               | 2:OR
|               | 3:XOR
|               |
|               | If 4 is added to "logic", the sprite will be inverted.
|               |
|               | If "flip" = 1, horizontal flipping is applied to sprite.
|               |
|               | If update_lcd is set to something other than zero, the LCD
|               | will be updated along with the sprite draw.

Also keep in mind xLIB  doesn't work on OS 2.53 MP or higher on the 84+. Celtic III does, however.

http://www.omnimaga.org/index.php?action=downloads;sa=view;down=479

Also avaliable on United-TI forums, but you must register an account to download their copy.
« Last Edit: March 17, 2010, 02:02:59 pm by DJ Omnimaga »

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #24 on: March 17, 2010, 03:00:14 pm »
Ok. I am against making pics, as I've had bad experiences with pics as subroutines. What would the hex string be for this sprite:

0 0 1 0 0 1 0 0
0 0 1 0 0 1 0 0
0 0 1 0 0 1 0 0
0 0 1 1 1 1 0 0
0 1 1 1 1 1 1 0
0 1 1 1 1 1 1 0
0 0 1 1 1 1 0 0
0 0 0 1 1 0 0 0

this is aiming down. I will need a hex code for each of the four cardinal directions (or can someone tutor me on how to do it).

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Star Trek 2 player v0.1 alpha
« Reply #25 on: March 17, 2010, 03:17:27 pm »
Well pics are not that bad, except for the fact you can easily overwrite them. The trick is to group them. A game that use pics doesn't necessarly make the entire game bad, if that's what you imply. In fact, as proof they aren't that bad, 7 of them made Ticalc.org front page news before:

http://www.ticalc.org/archives/news/articles/14/145/145426.html
http://www.ticalc.org/archives/news/articles/14/142/142801.html
http://www.ticalc.org/archives/news/articles/13/139/139347.html
http://www.ticalc.org/archives/news/articles/13/131/131953.html
http://www.ticalc.org/archives/news/articles/12/124/124432.html
http://www.ticalc.org/archives/news/articles/12/122/122186.html
http://www.ticalc.org/archives/news/articles/11/119/119577.html

If you absolutely don't want to use pics in your own, though, I think Celtic has hex commands. However, I never used them. For hex conversion, you would need to use a hex converter like this:

http://www.omnimaga.org/index.php?action=downloads;sa=view;id=520

There's an on-calc one somewhere that someone recently posted on the forums but I forgot its location due to the post rate, I'll try to find it later. There's also the sprite editor included with Axe Parser, which converts sprites to HEX.
« Last Edit: March 17, 2010, 03:23:05 pm by DJ Omnimaga »

Offline Gale

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 115
  • Rating: +1/-0
  • Ti-84+ Silver Edition
    • View Profile
Re: Star Trek 2 player v0.1 alpha
« Reply #26 on: March 17, 2010, 06:12:02 pm »
how are you coordinating movement and such between calcs? because i heard that one calc has to be paused or stopped while action is happening on the other or something like that.

oh, and i'll test for you. me and my friend play games on our calcs together all the time during class. could you send me a pm here with the link though, because i can't open zips on any other site besides this one and TI's site
« Last Edit: March 17, 2010, 06:12:26 pm by Gale »
remember me as a time of day...

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #27 on: March 17, 2010, 06:25:02 pm »
Thanks Gale. Once the program is done and uploaded, I will provide the link. Also, to coordinate movement between calcs, I will be using an assembly subroutine, not the calc's TI-Basic commands, for exactly the reason you say.

Offline Gale

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 115
  • Rating: +1/-0
  • Ti-84+ Silver Edition
    • View Profile
Re: Star Trek 2 player v0.1 alpha
« Reply #28 on: March 17, 2010, 06:27:18 pm »
okay nice. and may i ask what the subroutine is? unless you made it yourself of course. i'm just curious, because i wanted to make a multiplayer Battleship game, but with simultaneous animation on both calcs
remember me as a time of day...

Offline ACagliano

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 919
  • Rating: +32/-2
    • View Profile
    • ClrHome Productions
Re: Star Trek 2 player v0.1 alpha
« Reply #29 on: March 17, 2010, 06:33:14 pm »
Well, of course, for the most seamless linking, you would be better to write your entire code in assembly. But, if your like me and cannot program in assembly, the one I'm using is vComm. You can find it in the TI-file archives.