Author Topic: Axe game : Avoid  (Read 17380 times)

0 Members and 2 Guests are viewing this topic.

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #45 on: December 26, 2010, 12:26:00 pm »
Run wabbit emu.
File -> New
Calculator -> Connect to...

And it should work :)

Thanks much! I had no idea.

Offline Fast Crash

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 192
  • Rating: +45/-7
  • Virus of tomorrow
    • View Profile
Re: Axe game : Avoid
« Reply #46 on: December 26, 2010, 12:31:39 pm »
Me too. I tried every options, and i found it.
Now i hope someone knows the answer to my question...

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #47 on: December 26, 2010, 12:33:12 pm »
Quote
thank you but i found how to link 2 calcs on wabbit emu.
I just have a question: does the linking command use variables? or pointers? currently only constants work perfectly.

When a topic gets a new page, usually people forget about the other one :S

Offline Fast Crash

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 192
  • Rating: +45/-7
  • Virus of tomorrow
    • View Profile
Re: Axe game : Avoid
« Reply #48 on: December 26, 2010, 12:36:48 pm »
Thank you for repeating the question ! I'll see tomorrow if the problem comes from wabbit emu, using only constants in linking.

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #49 on: December 26, 2010, 04:27:02 pm »
I know that appvars work with pointers only, so i'd bet that linking only works with pointers too. However, I'm not an Axe pro and might be wrong.

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: Axe game : Avoid
« Reply #50 on: December 26, 2010, 04:29:46 pm »
thank you but i found how to link 2 calcs on wabbit emu.
I just have a question: does the linking command use variables? or pointers? currently only constants work perfectly.


What do you mean by the linking command? Send( accepts expressions, IIRC, but only one byte (the lower byte of whatever gets evaluated).




Offline Fast Crash

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 192
  • Rating: +45/-7
  • Virus of tomorrow
    • View Profile
Re: Axe game : Avoid
« Reply #51 on: December 26, 2010, 04:31:06 pm »
what is IIRC ?

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #52 on: December 26, 2010, 04:31:27 pm »
thank you but i found how to link 2 calcs on wabbit emu.
I just have a question: does the linking command use variables? or pointers? currently only constants work perfectly.


What do you mean by the linking command? Send( accepts expressions, IIRC, but only one byte (the lower byte of whatever gets evaluated).

I am almost sure he means Send( arguments for example.

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: Axe game : Avoid
« Reply #53 on: December 26, 2010, 04:31:38 pm »
Run wabbit emu.
File -> New
Calculator -> Connect to...

And it should work :)
When I try opening a second copy of Wabbitemu it says skin doesn't match screen size or something like that and I can,t do anything in the second copy ??? In other words I cannot even have two copies of Wabbitemu open at once. ???
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: Axe game : Avoid
« Reply #54 on: December 26, 2010, 04:32:20 pm »
IIRC is "if I remember correctly" :)

You can put whatever expression you want in the first argument, just like with most other commands. It's evaluated at runtime and whatever byte it results in is sent. So Send({8000},TIME) can be used to send the byte at the pointer $8000, in other words. Send({8000}r,TIME) still sends only the single byte at $8000 because only one byte can be sent.
« Last Edit: December 26, 2010, 04:33:30 pm by Deep Thought »




Offline Fast Crash

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 192
  • Rating: +45/-7
  • Virus of tomorrow
    • View Profile
Re: Axe game : Avoid
« Reply #55 on: December 26, 2010, 04:34:14 pm »
With than f****** windows you cannot open 2 times at once any app. You should ask to wabbit emu staff where does this error come from.

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: Axe game : Avoid
« Reply #56 on: December 26, 2010, 04:35:19 pm »
Well I used to be able to do so with early versions of WabbitEmu, Firefox, IE, etc. Just not with newer versions.
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #57 on: December 26, 2010, 04:35:28 pm »
With than f****** windows you cannot open 2 times at once any app. You should ask to wabbit emu staff where does this error come from.

You should ask? You should do it. Is it WabbitEmulator's fault or the program's fault?

In my computer you can't have two WabbitEmu's at the same time too :( That's annoying some times, but I get over it most of the times.

Offline Fast Crash

  • LV4 Regular (Next: 200)
  • ****
  • Posts: 192
  • Rating: +45/-7
  • Virus of tomorrow
    • View Profile
Re: Axe game : Avoid
« Reply #58 on: December 26, 2010, 04:37:21 pm »
you can open two apps at once?  :o

Offline Munchor

  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6199
  • Rating: +295/-121
  • Code Recycler
    • View Profile
Re: Axe game : Avoid
« Reply #59 on: December 26, 2010, 04:38:11 pm »
you can open two apps at once?  :o

Don't you mean one app in one calculator and 1 app in another calculator using WabbitEmu?

EDIT: No, that's impossible in TI-OS.
« Last Edit: December 26, 2010, 04:38:26 pm by ScoutDavid »