Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - neuronix

Pages: 1 2 [3] 4 5 ... 8
31
Reuben Quest / Re: Reuben 3 teasers / change / stuff
« on: October 21, 2016, 02:35:45 pm »
When a beta version?

32
Casio Calculators / Re: any casio classpad-ii fx-cp400 user ? any feedback ?
« on: September 29, 2016, 07:39:41 am »
The FX-CP400(+E) is very good, but is very slow. The programmation is very good but it is not possible to program any language other basic. If you would buy the FX-CP 400(+E) for his speed, rather buy the ClassPad 330 not Plus ;)

Sorry for my english :-\

33
Reuben Quest / Re: Reuben 3 teasers / change / stuff
« on: September 25, 2016, 01:01:06 pm »
Good work.
The reuben quest 2 is to small. I have finished it in about 5/6 hours ;)
So, good chance to finish this project and congratulations to your work  :thumbsup:

34
Axe / Re: Axe Q&A
« on: September 22, 2016, 07:19:04 am »
Ok, thanks

35
The Axe Parser Project / Re: Axe Library, Axiom, and Tool Collection
« on: September 20, 2016, 07:21:49 am »
Good job E37  ;)

36
[FR] Programmation Axe Parser / Re: [Axe parser] : projet worms
« on: September 16, 2016, 07:26:54 am »
Ok, thanks.
What a shame! This was a good project :)

37
The Axe Parser Project / Re: Axe Library, Axiom, and Tool Collection
« on: September 15, 2016, 12:43:12 pm »
Ok, thank you for this response

38
The Axe Parser Project / Re: Axe Library, Axiom, and Tool Collection
« on: September 14, 2016, 12:39:01 pm »
Yes, it works, but I would like to know why?

39
Axe / Re: Axe Q&A
« on: September 14, 2016, 12:34:55 pm »
@E37 How did you make?

40
The Axe Parser Project / Re: GUI Librarie
« on: September 13, 2016, 11:08:47 am »
Thank you very much
If you have any idea, don't hesitate ;)

41
The Axe Parser Project / GUI Librarie
« on: September 12, 2016, 12:53:37 pm »
Hi guys !
I'm working on a Librarie which provides widgets for your GUIs, like a button, an alert, a popup and more.
For now, I only have 23 funcs  ;D :
FillRect(x1,y1,x2,y2)Draw a filled rectangle on the main buffer.
Rect(x1,y1,x2,y2)Draw a rectangle on the main buffer.
PopUp(x,y,Title,Str,Line)Title must be a zero-terminated string
Str must be a zero-terminated string
Line is the number of zero-terminated string in Str
Draw a PopUp at x,y on the main buffer.
DimStr(Str)Thanks to jacobly for this function
This one return the lenght in pixel of the string
ProgressBar(x,y,weidth,height,pause)weidth is the number of pixel in the ProgressBar. If 3 is the weidth, the progressbar will have 5 pixel of weidth with the border
height is the number of pixel without border (2 pixel)
pause is the time between each percent
Draw a progress bar on the screen. It is possible to quit with [clear]. That generate an Alert (cf alert)
Button(x,y,Str,Nbr)Draw a non-filled Button at x,y on the main buffer.
Str must be a zero-terminated string
Nbr is the number of zero-terminated string in Str
Alert(Title,Str)Draw an alert on the main buffer.
Title must be a zero-terminated string
Str must be a zero-terminated string composed by one of these.
ClrAll()Clear all screen (screen, main buffer and back buffer)
ClrAllBuf()Clear only all buffer
ClrMainBuf()Clear only the main buffer
ClrBackBuf()Clear only the back buffer
Disp4Color()Draw the main and back buffer to the screen to create 4 color
Disp3Color()Draw the main and back buffer to the screen to create 3 color
Disp2Color()Draw the main buffer to the screen
IndicOff()Turns off the run indicator
DoneOff()The program will not display "done" after finishing
SetCont(cont)Set the LCD contrast (0 is lightest, 63 is darkest)
RetCont()Return the LCD contrast value
SaveMainBuf()Save the main buffer to the back buffer
RclBackBuf()Copy the back buffer to the main buffer
Screenshot()Takes a screenshot and saves it to the main buffer
DispSprt(x,y,sprt)Sprt must be create in this form:
[xxxxxxxx]->ptr
[xxxxxxxx]
[xxxxxxxx]
[xxxxxxxx]
[xxxxxxxx]
[xxxxxxxx]
[xxxxxxxx]
[xxxxxxxx]
x must be a 0 (clear the pixel at this point), a 1 (draw a pixel at this point), a 2 or other (draw or clear a pixel depending on the pixel at this point)
This function draw a sprite at x,y on the main buffer
MiniButton(x,y,str)Draw a filled button at x,y on the main buffer
str must be a zero-terminated string composed by only one of these


Thank you in advance for your returns.
neuronix

42
The Axe Parser Project / Re: Lenght string function in pixel
« on: September 10, 2016, 01:36:58 pm »
Ok,
Very thanks jacobly  :thumbsup:

43
The Axe Parser Project / Lenght string function in pixel
« on: September 10, 2016, 10:44:54 am »
Hi,
I would like to create an lenght string function in Axe that return the lenght in pixel but my function don't work, she returns wrongs value:
Code: [Select]
Lbl DimStr
0→r₃
For(r₂,0,longueur(r₁)-1
If dansChaîne("abcdeghjknopqruvxy?0123456789­-+/^{}θ…_%↑↓×\ABCDEFGHIJKLMNOPQRSTUVWXYZθ"[00],{r₁+r₂})
r₃+4→r₃
End
If 32={r₁+r₂}
r₃++
End
If dansChaîne("i.:!"[00],{r₁+r₂})
r₃+2→r₃
End
If dansChaîne("flst()[],;"[00],{r₁+r₂})
r₃+3→r₃
End
If dansChaîne("z&~"[00],{r₁+r₂})
r₃+5→r₃
End
If dansChaîne("mw*π$#@"[00],{r₁+r₂})
r₃+6→r₃
End
End
r₃
Return
Help me please.
Thank you in advance

P.S:
With a string equal to "Hi!", the function should returns 8 but she returns 0 :(

44
[FR] Programmation Axe Parser / Re: [TI-83+] Fallen
« on: September 10, 2016, 04:55:22 am »
Projet abandonné j'imagine?

45
[FR] Programmation Axe Parser / Re: [Axe parser] : projet worms
« on: September 10, 2016, 04:48:42 am »
J'imagine que le projet est mort?

Pages: 1 2 [3] 4 5 ... 8