Merge pull request #167 from cloudirector/master

[] (#166) Gambling added
This commit is contained in:
ThinLiquid 2024-02-07 18:18:37 +00:00 committed by GitHub
commit 8ee0f166ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 146 additions and 3 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "flowos", "name": "flowos",
"version": "2.4.0", "version": "2.4.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "flowos", "name": "flowos",
"version": "2.4.0", "version": "2.4.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"ansi-to-html": "^0.7.2", "ansi-to-html": "^0.7.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "flowos", "name": "flowos",
"version": "2.4.0", "version": "2.4.1",
"description": "The most aesthetic webOS.", "description": "The most aesthetic webOS.",
"main": "src/bootloader.ts", "main": "src/bootloader.ts",
"scripts": { "scripts": {

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

View file

@ -25,6 +25,12 @@ export const defaultFS: { root: Directory } = {
deleteable: false, deleteable: false,
permission: Permission.USER, permission: Permission.USER,
children: { children: {
'Fruits.app': {
type: 'file',
deleteable: true,
permission: Permission.USER,
content: Buffer.from('apps/Fruits')
},
'Info.app': { 'Info.app': {
type: 'file', type: 'file',
deleteable: true, deleteable: true,

137
src/system/apps/Fruits.ts Normal file
View file

@ -0,0 +1,137 @@
import HTML from '../../HTML'
import { Process } from '../../types'
import icon from '../../assets/icons/fruits/fruits.png'
import cherriesIcon from '../../assets/icons/fruits/cherries.png'
import lemonIcon from '../../assets/icons/fruits/lemon.png'
import tangerineIcon from '../../assets/icons/fruits/tangerine.png'
const SlotMachine: Process = {
config: {
name: 'Fruits',
type: 'process',
icon,
targetVer: '1.0.0-indev.0'
},
run: async (process): Promise<void> => {
const win = await process.loadLibrary('lib/WindowManager').then((wm: any) => {
return wm.createWindow({
title: 'Fruits',
icon,
width: 400,
height: 500,
canResize: false
}, process)
})
const setupWindowStyles = (): void => {
win.content.style.padding = '20px'
win.content.style.textAlign = 'center'
win.content.style.display = 'flex'
win.content.style.flexDirection = 'column'
win.content.style.justifyContent = 'center'
win.content.style.alignItems = 'center'
win.content.style.background = '#181825'
}
const createReelContainer = (): HTML => {
return new HTML('div').appendTo(win.content).style({
position: 'relative',
display: 'flex',
justifyContent: 'center',
marginBottom: '20px',
height: '150px',
overflow: 'hidden'
})
}
const createOverlay = (parentElement: HTML): void => {
new HTML('div').appendTo(parentElement).style({
position: 'absolute',
top: '0',
left: '0',
width: '100%',
height: '100%',
background: '#000',
opacity: '0.5'
})
}
const icons = [cherriesIcon, lemonIcon, tangerineIcon]
const getRandomIcon = (): string => icons[Math.floor(Math.random() * icons.length)]
const slotIcons = [getRandomIcon(), getRandomIcon(), getRandomIcon()]
const updateReel = (reelContainer: HTML): void => {
reelContainer.clear()
slotIcons.forEach((icon) => {
new HTML('img').attr({
src: icon,
width: '100',
height: '100'
}).appendTo(reelContainer)
})
}
let isSpinning = false
const spinSlotMachine = (): void => {
if (isSpinning) return
isSpinning = true
const spinDuration = 3000
const frameDuration = 100
const winColor = '#FFD700'
let frameCount = 0
const totalFrames = spinDuration / frameDuration
const spinInterval = setInterval(() => {
if (frameCount < totalFrames - 1) {
slotIcons.unshift(getRandomIcon())
slotIcons.pop()
}
updateReel(reelContainer)
frameCount++
if (frameCount === totalFrames) {
clearInterval(spinInterval)
if (slotIcons[0] === slotIcons[1] && slotIcons[1] === slotIcons[2]) {
const button = win.content.querySelector('button')
button.style.transition = 'background-color 0.5s ease-out'
button.style.backgroundColor = winColor
setTimeout(() => {
button.style.transition = 'background-color 0.5s ease'
button.style.backgroundColor = '#3498db'
}, 3000)
}
isSpinning = false
}
}, frameDuration)
}
setupWindowStyles()
const reelContainer = createReelContainer()
createOverlay(reelContainer)
updateReel(reelContainer)
new HTML('button')
.text('Spin')
.on('click', spinSlotMachine)
.appendTo(win.content)
.attr({
style: 'font-size: 18px; padding: 10px 20px; background: #3498db; color: #fff; border: none; border-radius: 5px; cursor: pointer; margin-top: 20px'
})
}
}
export default SlotMachine