Fivewin SlotMachine

User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Fivewin SlotMachine

Post by Silvio.Falconi »

I made this game to entertain my grandson during the coming Christmas holidays

Image


You can download the game at http://www.eoeo.it/downloads/

As soon As I'll publish the source code ,

P.s. thanks to My friend Mastintin for some features
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
devtuxtla
Posts: 392
Joined: Tue Jul 29, 2008 1:55 pm

Re: Fivewin SlotMachine

Post by devtuxtla »

Hi Silvio

wow...
Visite Chiapas, el paraiso de México.
User avatar
Antonio Linares
Site Admin
Posts: 42450
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 20 times
Been thanked: 58 times
Contact:

Re: Fivewin SlotMachine

Post by Antonio Linares »

very nice :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: Fivewin SlotMachine

Post by Silvio.Falconi »

thanks Antonio
But I have to improve the animation bitmaps
because I can not create a movement typical of slots
I don't Know How make it ( I tried to converte a javascript source into xharbour)
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
driessen
Posts: 1422
Joined: Mon Oct 10, 2005 11:26 am
Location: Genk, Belgium

Re: Fivewin SlotMachine

Post by driessen »

Very nic. Congrats.
Regards,

Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 24.07 - Harbour 3.2.0 (February 2024) - xHarbour Builder (January 2020) - Bcc773
User avatar
ukoenig
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: Fivewin SlotMachine

Post by ukoenig »

Silvio,

that looks very nice.

Some more options I tested :
1. You can define the HOLDING-TIME of the images and the RUNNING-speed
2. adding a < ZONK > the game will be stoped and the reached values are set to 0 loosing the values
3. 2 players are gambling for POINTS
4. A trial-limit : Points are counted after reaching the limit of trials
5. adding any game-images ( to be loaded from a subdirectory )
6. a DBF to add player-names, points, the selected game-number, game-speed ...
7. save the status of a game
8. Points will be given from the middle-line
... added top-left to bottom-right and top-right to bottom-left
...counting points only for the middle-line takes to long

in case You need any of these calculations, let me know

Silvio
But I have to improve the animation bitmaps
because I can not create a movement typical of slots
I don't Know How make it ( I tried to converte a javascript source into xharbour)


Maybe in the meantime
Changing the IMAGE-HOLDINGTIME and the value of WHEEL-TURNS from the xBrowse animated cells

Code: Select all | Expand


STATIC FUNCTION NEW_IMAGES()
Local I := 1

FOR I := 1 TO nSvalue[10] // Turns
   NEW_ARRAY()
   SYSREFRESH()
   SYSWAIT(nSvalue[11]) // Delay
NEXT

RETURN NIL
 


Because of all the different options, there is not much space for visual design

A xBrowse-design with animated cells
Two players are gambling against each other

Image

include own images ( transparent or photos )
Background selection
Player database to save everything of a game
Each game can have a differnt background and wheel-speed / holding-time

Gamebreak !!

Image

Image

best regards
Uwe :lol:
Last edited by ukoenig on Sun Dec 13, 2015 3:09 pm, edited 1 time in total.
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: Fivewin SlotMachine

Post by Silvio.Falconi »

Uwe,
I not use dbf, two player or I must not save the points of game
I not Use Xbrowse to move reels of slot
the problem not is on delay or timer or running speed

the problem is on mechanism of the animation of the images in the vertical of each reels
I tried to converte a java script source code have different functions to create a reel
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
ukoenig
Posts: 4043
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: Fivewin SlotMachine

Post by ukoenig »

Sivio,

I think it is a kind of calculation to show a VERTICAL-movement of images
I got some ideas and will test it.
I will let You know about the results.

The additional opttions from above I added, just to have more fun.

best regards
Uwe :D
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: Fivewin SlotMachine

Post by Silvio.Falconi »

Last edited by Silvio.Falconi on Wed Dec 16, 2015 12:36 pm, edited 1 time in total.
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
MarcoBoschi
Posts: 1070
Joined: Thu Nov 17, 2005 11:08 am
Location: Padova - Italy
Contact:

Re: Fivewin SlotMachine

Post by MarcoBoschi »

:D
Marco Boschi
info@marcoboschi.it
byron.hopp
Posts: 388
Joined: Sun Nov 06, 2005 3:55 pm
Location: Southern California, USA
Contact:

Re: Fivewin SlotMachine

Post by byron.hopp »

Grand PaPa of the year...
Thanks,
Byron Hopp
Matrix Computer Services
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: Fivewin SlotMachine

Post by Silvio.Falconi »

Enrico,
for the http://www.cartolinefree.eu/santaslot/index.html
it run with html5 (css+javascript) you must upgrade your Browser

Instead for download the machine made with fwh -> http://www.eoeo.it/downloads -> Giochi -> slotmachine
Last edited by Silvio.Falconi on Wed Dec 16, 2015 12:36 pm, edited 1 time in total.
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Enrico Maria Giordano
Posts: 8738
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 2 times
Contact:

Re: Fivewin SlotMachine

Post by Enrico Maria Giordano »

Silvio.Falconi wrote:Enrico,
for the http://www.cartolinefree.eu/santa1/index.html
it run with html5 (css+javascript) you must upgrade your Browser


I'm using Microsoft Edge and I've no interest in changing browser, sorry.

EMG
User avatar
Silvio.Falconi
Posts: 7120
Joined: Thu Oct 18, 2012 7:17 pm

Re: Fivewin SlotMachine

Post by Silvio.Falconi »

Enrico also I use Microsoft Edge with windows 10 on a Portable Pc (ASUS ROG G752)
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Post Reply