Fivewin SlotMachine
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Fivewin SlotMachine
I made this game to entertain my grandson during the coming Christmas holidays
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
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
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Fivewin SlotMachine
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)
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)
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: Fivewin SlotMachine
Very nic. Congrats.
Regards,
Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 21.01 - Harbour 3.2.0 (October 2020) - xHarbour Builder (January 2020) - Bcc7
Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 21.01 - Harbour 3.2.0 (October 2020) - xHarbour Builder (January 2020) - Bcc7
Re: Fivewin SlotMachine
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
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
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 !!
best regards
Uwe
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
STATIC FUNCTION NEW_IMAGES()
Local I := 1
FOR I := 1 TO nSvalue[10] // Turns
NEW_ARRAY()
SYSREFRESH()
SYSWAIT(nSvalue[11]) // Delay
NEXT
RETURN NIL
A xBrowse-design with animated cells
Two players are gambling against each other
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 !!
best regards
Uwe
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.
i work with FW.
If you have any questions about special functions, maybe i can help.
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Fivewin SlotMachine
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
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
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: Fivewin SlotMachine
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
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
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.
i work with FW.
If you have any questions about special functions, maybe i can help.
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Fivewin SlotMachine
Last edited by Silvio.Falconi on Wed Dec 16, 2015 12:36 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- MarcoBoschi
- Posts: 925
- Joined: Thu Nov 17, 2005 11:08 am
- Location: Padova - Italy
- Contact:
Re: Fivewin SlotMachine
Marco Boschi
info@marcoboschi.it
info@marcoboschi.it
-
- Posts: 254
- Joined: Sun Nov 06, 2005 3:55 pm
- Location: Southern California, USA
- Contact:
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Fivewin SlotMachine
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
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.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Fivewin SlotMachine
I'm using Microsoft Edge and I've no interest in changing browser, sorry.Silvio.Falconi wrote:Enrico,
for the http://www.cartolinefree.eu/santa1/index.html
it run with html5 (css+javascript) you must upgrade your Browser
EMG
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Fivewin SlotMachine
Enrico also I use Microsoft Edge with windows 10 on a Portable Pc (ASUS ROG G752)
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC