Page 12 of 17

Re: Game test v0.01

Posted: Sun Jan 04, 2026 3:52 am
by Carm3D
Amazing.

Re: Game test v0.01

Posted: Mon Jan 05, 2026 4:53 pm
by minimy
Thanks Carm!
And here the interactive part of the code running. This include an Sound engine with wav sound modulated frequency in real time between 12000 and 28000, to change voices (Monster, male, female, kid), and speed to keep relation between sound and typewriter.

The system is very very easy to make, You can make it yourself. I tell you how work the system:
I got a wav with phonemes for almost... hehe. Some thing like this:
'a e i o u ma me mi mo mu ...' Better with no space between phonemes, Can use audacity for it.
Play the sound in loop when start dialogue, later need synchronize text phonemes with position in the sound. Is not hard to do. See PB sound library.

Link to the video with sound in YT: https://www.youtube.com/watch?v=fUVnSXsnKzI
Was recorded with smartphone, sorry about quality.
Image

Re: Game test v0.01

Posted: Tue Jan 06, 2026 9:15 am
by Carm3D
"Serpiente? Serpiiiiiiieeeeeeente!!!"

Re: Game test v0.01

Posted: Tue Jan 06, 2026 3:58 pm
by minimy
Carm3D wrote: Tue Jan 06, 2026 9:15 am "Serpiente? Serpiiiiiiieeeeeeente!!!"
¡Que va!.. Lobo solitario. :lol:
I know the voice is not very good but with music and other sound effects at time can be good.
Not remember if animal crossing or other game use a similar speak effect.

Re: Game test v0.01

Posted: Tue Jan 06, 2026 6:46 pm
by Carm3D
minimy wrote: Tue Jan 06, 2026 3:58 pmNot remember if animal crossing or other game use a similar speak effect.
https://www.youtube.com/watch?v=AShPXGlbvbE

Re: Game test v0.01

Posted: Tue Jan 06, 2026 6:52 pm
by ChrisR
I'm not really into games at the moment, but I watched the videos and I'm impressed by the work that must have been involved and that you can do this kind of thing with PB. Well done :)

Re: Game test v0.01

Posted: Tue Jan 06, 2026 11:00 pm
by threedslider
Nice work as always ! Keep it up !

Re: Game test v0.01

Posted: Fri Jan 09, 2026 2:32 pm
by minimy
Making minigames to include in the game.

Image

Re: Game test v0.01

Posted: Fri Jan 09, 2026 3:25 pm
by Mindphazer
Do you have clones ??
Then you can do "parallel coding" :mrgreen:
That's the only way to explain how you can code so much and so fast !!

Re: Game test v0.01

Posted: Fri Jan 09, 2026 3:32 pm
by minimy
Mindphazer wrote: Fri Jan 09, 2026 3:25 pm Do you have clones ??
Then you can do "parallel coding" :mrgreen:
That's the only way to explain how you can code so much and so fast !!
Hahahaha! Yes! We are legion! :lol:

This other minigame to include in the main game. Nice for gambling addicts.
Image

Re: Game test v0.01

Posted: Fri Jan 09, 2026 3:33 pm
by minimy
All this games are in one sprite to quick use, only load when play, and later free the system again to save memory and resources.

Re: Game test v0.01

Posted: Sat Jan 10, 2026 4:29 pm
by Fred
So we won't get one game, but many games ! :lol:

Re: Game test v0.01

Posted: Sat Jan 10, 2026 7:54 pm
by minimy
Yes Fred, the idea is include many minigames, i think this will be a nice addon to complete a good ROL game. The real luck may be an factor, if you gain 5000 money at the begin of the game, the game will be more easy beacause can buy better weapons, armours... If lost all can start a new game :lol:
The rest of minigames (no receive money) is just for fun.

Because i go jumping from one part to another part of the game... :lol: (The way not to get bored...)

Many time trying to make a nice CRT effect over image fast, I need this very, very fast. A CRT is not only a mask to cut the shape of the old screen (rounded) in the image. A real CRT use pixels curvature and distortion, if not the effect is very poor.
Start with the easy way reading and drawing the image data with Point and Plot, is nice but for this effect is not the best option.

Then i try with DrawingBuffer(), this is more fast, in my test is much more fast. But need mooooore!! :mrgreen:

Then now the problem is not the drawing system, now the problem is the curvature and distortion of every pixel calculated in real time. Mamma mia this is very slow!.

My solution was using DrawingBuffer but with an 'initialize' procedure to calcute an mapped every distortion of every pixel in the image before. Later every image used is mapped, just need dump memory to fill the output. I think this can be a good method for other fx like eyefish or any distortion of the image, when you need use many times same distortion with diferent frames.

The speed in FPS is fantastic include with typewriter FX.
Image

Well, all problems solved and finally i got the CRT screen working and very dirt.
Added: Support scroll for long texts, dirt and dust, lines and bright.
Image
I know this is very similar to one very famous game, but an CRT is an CRT, no? :lol:

This is the final idea. Added images and small gif movies. Images and video are only for this example.
Image

Re: Game test v0.01

Posted: Sun Jan 11, 2026 4:50 pm
by minimy
Background is provitional

Re: Game test v0.01

Posted: Mon Jan 12, 2026 1:07 am
by Carm3D
The warping / fisheye effect is very impressive!