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

Pages: 1 ... 6 7 [8] 9 10 ... 101
106
Casio Calculators / Re: FiXos, a UNIX-like kernel for fx9860
« on: August 02, 2014, 05:22:05 am »
OK I'm officially on the project. Let's see if I can make something like a shell..

EDIT : stupid echo routine
Code: [Select]
static void test_echo(int fdin, int fdout) {
char buffer[33];
ssize_t result = 0;
int index = 0;
char current_char;
while(1){
read(fdin, &current_char, 1);
buffer[index++] = current_char;
if(current_char == '\n' || index == 32) {
result = write(fdout, buffer, index);
if(result != index)
break;
index = 0;
}
}
}
I think I should find a way to cleanly read a whole line of text.

107
Humour and Jokes / Re: Weird/funny pictures thread
« on: August 02, 2014, 03:46:38 am »
I've botblaughed as much as that on a GIF for a long time.

108
Humour and Jokes / Re: Weird/funny pictures thread
« on: August 02, 2014, 03:45:17 am »

109
Art / Re: Mockups "please say this is going to be a game"
« on: August 01, 2014, 10:24:10 am »
I ould see full color for the background and 3-bit graphisms for the characters. yes this is quite ugly but that can avoid to store a picture for each position and each orientation. (using tables as sprites, you can achieve relative good speed for the Prizm.)

Or switch to C/C++. :troll:

110
Casio Calculators / Re: [PRIZM] Cookie Clicker
« on: July 27, 2014, 01:58:10 pm »
Translucent cookies are relatively simple :
Code: [Select]
In : color, alpha (between 0 and 1)
Out : colorOnScreen * (1 - alpha) + color * alpha
Apply that on every pixel of the sprite and you're done.

111
Casio Calculators / Re: [PRIZM] Cookie Clicker
« on: July 09, 2014, 06:13:08 am »
MMmh, you should try another font, this one is not tasty enough. :D
Oh and do you use the RTS? You could support a sort of idling system : starting the game loads the save and the timestamp and gives as CpS * time out of the addin.

112
Casio Calculators / Re: FiXos, a UNIX-like kernel for fx9860
« on: July 08, 2014, 08:32:22 am »
Is there any functions done to start a shell? I could do one if you want!


EDIT : FXShell (consider that name already taken, guys)

113
News / Re: ASM arrives on the HP Prime!
« on: July 07, 2014, 05:03:59 pm »
Yeah, C on Prime, now port all the emulators to kill productivity.

114
Other / Re: Having fun with a Samsung digital camera
« on: July 07, 2014, 04:28:07 pm »
now publish a screenshot with Ricky on it. :p (nice redirection though, nice one)

115
TI Z80 / Re: [Axe] Link Port Pong
« on: July 07, 2014, 08:08:25 am »
Now add hundreds of balls. Oh and powerups.

116
Meh, I had the chance to touch to VX Ace, the scripting system looks very messy. It's hard to read VX Ace Ruby code --" I wanted to hae a A-RPG engine to see if something is doable in one of my projects, but hell, where do I begin?!

117
Miscellaneous / Re: Post your desktop
« on: July 01, 2014, 06:00:35 pm »
Like I said, this does a very neat wallpaper once blended in a flat color.
(and no, I'm quite creepypasta-proof.)

118
Gaming Discussion / Re: Your best video game pickups.
« on: July 01, 2014, 05:58:21 pm »
Mmmh, thinking about it, it's the only thing I want to take selfies with it. I think, IMHO, selfies are very egocentric and narcissic. I like the dithering pattern from the GBC and how it gives a very good nostalgia factor (also LOLCAT).

Now I have to find a way to dump the pictures.

119
Miscellaneous / Re: Awesome pictures thread
« on: July 01, 2014, 05:57:02 pm »
I was hoping to be able to get SSB3DS before I went to Hawaii this summer :(
Mostly because the flight is a long trip, though. It's not like I'd sit there on the beaches playing it.
Really? I know from experience that SSB is quite addicting :P

And once you get to test Project M + Turbo Mode, you can play all the battle games, you won't get away from Porject M ! :3

120
Gaming Discussion / Re: Your best video game pickups.
« on: July 01, 2014, 05:55:40 pm »
I got a Game Boy Camera. Never run RUN option guys...
By the way, this does a neat wallpaper!

Pages: 1 ... 6 7 [8] 9 10 ... 101