Author Topic: Axiom Requests  (Read 97637 times)

0 Members and 3 Guests are viewing this topic.

Offline jacobly

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 205
  • Rating: +161/-1
    • View Profile
Re: Axiom Requests
« Reply #150 on: December 07, 2011, 06:15:34 pm »
AFAIK, the crystal timers have nothing to do with the clock (they are two different things).
The problem is not reading the value of the clock, but the fact that it doesn't fit in an axe variable.
Regardless, you can get the value of the clock like this:
°AAsm(DB02E6202009AF0604772310FC180FDB477723DB487723DB457723DB4677)
and AB would contain the number of seconds since midnight, January 1, 1997, or 0 if the clock is off or the calculator has no clock.
°AAsm(DB477723DB487723DB457723DB4677)
or this if you know that the calculator has a clock

Also, running ClockOff on my TI84+SE does not turn the clock off (just doesn't display it in the mode menu).

Offline Happybobjr

  • James Oldiges
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2325
  • Rating: +128/-20
  • Howdy :)
    • View Profile
Re: Axiom Requests
« Reply #151 on: December 08, 2011, 03:05:22 pm »
Ohhh...  Should be super easy!
But this would help me.

Vertical +
but will only shift the first 48 rows.


I wouldn't ask normally, because of being a bother,  but as most of the code is already in axe, I think it could be done rather quickly.  Thanks
School: East Central High School
 
Axe: 1.0.0
TI-84 +SE  ||| OS: 2.53 MP (patched) ||| Version: "M"
TI-Nspire    |||  Lent out, and never returned
____________________________________________________________

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Axiom Requests
« Reply #152 on: December 08, 2011, 03:57:28 pm »
For Vertical+ or Vertical-, you can code that in pure Axe.

Vertical-
Copy(48*12+L6,47*12+L6,47*12)r

Vertical+
Copy(L6+12,L6,47*12)

EDIT: Oops, the following is Horizontal +:

Asm(214093AF0606CB1E2310FBC60420F5)

The part I bolded you can change to shift the first N column groups of 8 pixels.  So right now, 6*8 = 48 pixels shift.  Changing it up to 0C (which is 12 in decimal) shifts the full 96 pixels and is the original Horizontal+ command.
« Last Edit: December 08, 2011, 04:08:08 pm by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline Happybobjr

  • James Oldiges
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2325
  • Rating: +128/-20
  • Howdy :)
    • View Profile
Re: Axiom Requests
« Reply #153 on: December 08, 2011, 03:58:54 pm »
thank you so much.
This will be much faster right?
School: East Central High School
 
Axe: 1.0.0
TI-84 +SE  ||| OS: 2.53 MP (patched) ||| Version: "M"
TI-Nspire    |||  Lent out, and never returned
____________________________________________________________

Offline aeTIos

  • Nonbinary computing specialist
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3915
  • Rating: +184/-32
    • View Profile
    • wank.party
Re: Axiom Requests
« Reply #154 on: December 08, 2011, 03:59:21 pm »
So basically you could shift only half of the screen with that?
AFAIK, the crystal timers have nothing to do with the clock (they are two different things).
The problem is not reading the value of the clock, but the fact that it doesn't fit in an axe variable.
Regardless, you can get the value of the clock like this:
°AAsm(DB02E6202009AF0604772310FC180FDB477723DB487723DB457723DB4677)
and AB would contain the number of seconds since midnight, January 1, 1997, or 0 if the clock is off or the calculator has no clock.
°AAsm(DB477723DB487723DB457723DB4677)
or this if you know that the calculator has a clock

Also, running ClockOff on my TI84+SE does not turn the clock off (just doesn't display it in the mode menu).
Ooh, great!
« Last Edit: December 08, 2011, 04:03:03 pm by aeTIos »
I'm not a nerd but I pretend:

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Axiom Requests
« Reply #155 on: December 08, 2011, 04:06:44 pm »
By the way I corrected my previous post because I had accidentally posted Horizontal+
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline Happybobjr

  • James Oldiges
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2325
  • Rating: +128/-20
  • Howdy :)
    • View Profile
Re: Axiom Requests
« Reply #156 on: December 08, 2011, 04:35:34 pm »
removed
« Last Edit: December 08, 2011, 04:48:52 pm by Happybobjr »
School: East Central High School
 
Axe: 1.0.0
TI-84 +SE  ||| OS: 2.53 MP (patched) ||| Version: "M"
TI-Nspire    |||  Lent out, and never returned
____________________________________________________________

Offline aeTIos

  • Nonbinary computing specialist
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3915
  • Rating: +184/-32
    • View Profile
    • wank.party
Re: Axiom Requests
« Reply #157 on: December 08, 2011, 04:39:15 pm »
You can use L3 if you want.
I'm not a nerd but I pretend:

Offline Happybobjr

  • James Oldiges
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2325
  • Rating: +128/-20
  • Howdy :)
    • View Profile
Re: Axiom Requests
« Reply #158 on: December 08, 2011, 04:43:37 pm »
I replaced Vertical+ with the code, and the code isn;t working.  *removed*
« Last Edit: December 08, 2011, 04:49:01 pm by Happybobjr »
School: East Central High School
 
Axe: 1.0.0
TI-84 +SE  ||| OS: 2.53 MP (patched) ||| Version: "M"
TI-Nspire    |||  Lent out, and never returned
____________________________________________________________

Offline turiqwalrus

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 840
  • Rating: +51/-2
  • Wheeeeeee~!
    • View Profile
Re: Axiom Requests
« Reply #159 on: February 10, 2012, 02:56:14 pm »
What I'd like to see is an axiom that adds gCn support.
I imagine that this would be pretty hard to make, but it would be pretty great...

Offline Geekboy1011

  • The Oneironaut
  • Donator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2031
  • Rating: +119/-2
  • Dream that Awakening dream
    • View Profile
Re: Axiom Requests
« Reply #160 on: February 10, 2012, 08:04:55 pm »
What I'd like to see is an axiom that adds gCn support.
I imagine that this would be pretty hard to make, but it would be pretty great...

i could take a stab at this tonight if you want. give me a few hours and i will see if i can pull something together maybe...need to relearn basic axe

(i already have gcn practice lol)

also you will need the dcs app installed regardless thats not like removable.

also how automated do you want the axiom to be
should it handle everything including finding and keeping tabs on the amount of people in the hub. Or should it just set it up and expose the routines needed?

also what token should i use </doesnt care>
« Last Edit: February 10, 2012, 10:20:03 pm by Geekboy1011 »

Offline turiqwalrus

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 840
  • Rating: +51/-2
  • Wheeeeeee~!
    • View Profile
Re: Axiom Requests
« Reply #161 on: February 11, 2012, 09:08:41 am »
I don't really care about the token, since I wouldn't have any conflicting token issues anyway...

And as to how automated it should be, my general request would be these general features:
-Send/receive information from the hub
-list of players/number of players

and thanks for taking on my request :D

Offline kindermoumoute

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 836
  • Rating: +54/-3
    • View Profile
Re: Axiom Requests
« Reply #162 on: February 26, 2012, 06:32:11 am »
Can you update this list with all current axioms (Fullrene, Floating point math) And axiom in project ?
Projects :

Worms armageddon z80 :
- smoothscrolling Pixelmapping : 100%
- Map editor : 80%
- Game System : 0%

Tutoriel français sur l'Axe Parser
- 1ère partie : en ligne.
- 2ème partie : en ligne.
- 3ème partie : en ligne.
- 4ème partie : 10%
- Annexe : 100%

Offline Geekboy1011

  • The Oneironaut
  • Donator
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2031
  • Rating: +119/-2
  • Dream that Awakening dream
    • View Profile
Re: Axiom Requests
« Reply #163 on: February 29, 2012, 07:17:31 pm »
started the calcnet axiom thread here
http://ourl.ca/15186

its getting there most of the code is done i just have to test it which is proving to be a pita cause well idk axe xD


EDIT: see above >.> <.<
« Last Edit: March 01, 2012, 11:10:25 pm by Geekboy1011 »

Offline ZippyDee

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 729
  • Rating: +83/-8
  • Why not zoidberg?
    • View Profile
Re: Axiom Requests
« Reply #164 on: February 29, 2012, 08:41:18 pm »
I'm not sure if you realize that you just posted a link to the "normal post" icon for threads.....
There's something about Tuesday...


Pushpins 'n' stuff...