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 - Chockosta

Pages: 1 ... 20 21 [22] 23 24 ... 31
316
TI-Nspire / Re: [Lua] Image Editor
« on: September 09, 2011, 02:35:35 pm »
That's exactly what my code does.
It takes all "\xxx" and add string.char(xxx) to a string, then send the string to image.new()

317
Miscellaneous / Re: Going to be off for a long time
« on: September 08, 2011, 12:10:54 pm »
Too bad, I will really miss you. I hope you will still be around there.
(French : Et au fait, dans quelle prépa tu iras ?)

318
Lua / Re: Lua problems and bugs
« on: September 08, 2011, 11:54:33 am »
I found another problem.
I noticed that we can't use functions like that : function foo(...) return unpack(arg) end.
Maybe that's because of the Lua version...

319
TI-Nspire / Re: [Lua] Image Editor
« on: September 08, 2011, 11:46:11 am »
Oh, that's already what I do !
I thought you told me to put image's pixels in a table.

Actually, you can't use image.new(), because you have to convert "\xxx" in one character. (I can't explain really well because of my poor English, but here is a code : )
Spoiler For Spoiler:
Code: [Select]
function newImage(str)
 local str2,finished,index="",nil,1
 while not finished do
  if string.sub(str,index,index)==[[\]] then
   str2=str2..string.char(tonumber(string.sub(str,index+1,index+3)))
   index=index+4
  else
   str2=str2..string.sub(str,index,index)
   index=index+1
  end
  if index>string.len(str) then
   finished=1
  end
 end
 return image.new(str2)
end

320
TI-Nspire / Re: [Lua] Image Editor
« on: September 07, 2011, 07:15:34 am »
Oh, sorry, I did'nt see your answer.

This could be a good solution, but I want my images to be compatible with image.new() if the user wants to add them in a Lua program.

321
TI-Nspire / Re: [Lua] Image Editor
« on: September 03, 2011, 11:33:23 am »
@pianoman : Thanks !
@jimbauwens : unfortunately, you can't put more than ~3000 pixels in a document string :(

322
TI-Nspire / Re: [Lua] Image Editor
« on: September 03, 2011, 09:26:42 am »
Up !

nSpaint version 0.4...
-Transperent pixels are now different from white pixels.

As you can see, almost nothing changed...
But I made a new app : nAnima ! It allows you to make animations.
It is supposed to be in the same document as the nSpaint app.
You just have to create images with nSpaint, save them, and open them with nAnima. You can :
-Add, insert and remove frames
-Save and open animations
-Set the framerate (from 0.2 FPS to 100 FPS)
-Play the animation loop.

I made a video showing two animations (With the emulator. Unfortunately, it is awfully slow with TI nSpire CAS software, so I can't show color)

I attach screenies and the latest release.

323
TI-Nspire / Re: [Ndless] BigNumNum Cruncher
« on: September 03, 2011, 04:29:28 am »
Well done !

This is a nice program... Keep up the good work !

324
News / Re: Omnimaga turns 10 years old
« on: September 02, 2011, 06:24:51 am »
Happy birthday !

This really is a great site. I hope I will be there for 20th birthday :)

325
TI-Nspire / Re: Lua Monopoly
« on: September 01, 2011, 07:12:58 am »
Good luck !
It seems there are more and more great Lua games...

326
News / Re: Omnimaga Contest 2011 Part 2 results
« on: September 01, 2011, 04:34:36 am »
Congrats Levak ! Your game looks really awesome.
(And great, I reached the 3rd place !)

327
Thanks ! (Oh gosh, he knows everything about us !)
I said that here, by the way.

328
A good way to convert all invalid lua files is to have the "TI-Nspire student software" version 3.0.1. You just have to open files with it (it works)and save them. Now you can send them to OS 3.0.2...

I do that with all my games, so that's why they work on your calc.

329
News / Re: The Launch of a new website : TI-Planet
« on: August 28, 2011, 01:12:15 pm »
Nice !
Do you know when it will open ?

330
TI-Nspire / Re: [Lua] RayCaster
« on: August 27, 2011, 06:33:59 am »
Thank you for your help, NecroBumpist !
Unfortunately, you optimized the old version, which was a bit slower. I will try to improve the new one.

I didn't know localization was that faster.

Pages: 1 ... 20 21 [22] 23 24 ... 31