xxxxxxxxxx
284
let digits = {0:"0️⃣",1:"1️⃣",2:"2️⃣",3:"3️⃣",4:"4️⃣",5:"5️⃣",6:"6️⃣",7:"7️⃣",8:"8️⃣",9:"9️⃣"};
let digits_to_auction;
let auctioned_digits=[];
let auctioned_digits_raw=[];
let playerTokens;
let currentBid ;
let digit_prices={};
let gameOver;
const coin_width=30;
const coin_height = 5;
const button_length=40;
let minus_button,plus_button,go_button;
let select_index_label;
let final_number;
let won_or_not;
let RoundNo=1;
const TotalRounds = 10
const colnColCount=10;
const maxTokens = 20;
const APP_WIDTH=400;
const APP_HEIGHT=600;
const SCORE_PANEL_HEIGHT = 100;
const TABLE_CELL_HEIGHT=20;
let round_scores={};
let price_ranges = {
0: [0, 2],
1: [1, 3],
2: [1, 4],
3: [2, 5],
4: [2, 6],
5: [3, 7],
6: [4, 8],
7: [5, 9],
8: [6, 10],
9: [7, 12]
}
for(let r=1;r<=TotalRounds;r++){
round_scores[r]=0;
}
function score_toString(score){
if(score==0) return '-';
else return str(score);
}
function setup() {
createCanvas(APP_WIDTH, APP_HEIGHT+SCORE_PANEL_HEIGHT);
minus_button = createButton('➖');
plus_button = createButton('➕');
go_button = createButton('GO ⮐')
minus_button.style('font-size', '24px');
plus_button.style('font-size', '24px');
go_button.style('font-size', '24px');
go_button.style('background-color','green')
minus_button.mousePressed(BidDecrease);
plus_button.mousePressed(BidIncrease);
go_button.mousePressed(go);
select_index_label = ""
final_number=""
won_or_not =""
auctioned_digits = []
auctioned_digits_raw = []
// pixelDensity(1);
textAlign(CENTER,CENTER);
digits_to_auction = shuffle([0,1,2,3,4,5,6,7,8,9]);
currentBid=0;
playerTokens=maxTokens;
gameOver=false;
for(let d=0;d<10;d++){
digit_prices[d]=random(price_ranges[d][0],price_ranges[d][1])
}
}
function draw() {
background(255,255,255);
//Score Table
line(0,APP_HEIGHT-TABLE_CELL_HEIGHT,APP_WIDTH,APP_HEIGHT-TABLE_CELL_HEIGHT);
fill('#F44336')
textSize(15);
textStyle(BOLD);
text( `SCORE TABLE`,APP_WIDTH/2,APP_HEIGHT-TABLE_CELL_HEIGHT/2);
strokeWeight(4);
line(APP_WIDTH/2,APP_HEIGHT,APP_WIDTH/2,height);
strokeWeight(2);
line(APP_WIDTH/6,APP_HEIGHT,APP_WIDTH/6,height);
line(APP_WIDTH/2+APP_WIDTH/6,APP_HEIGHT,APP_WIDTH/2+APP_WIDTH/6,height);
for(let i=0;i<6;i++)
line(0,APP_HEIGHT+TABLE_CELL_HEIGHT*i,APP_WIDTH,APP_HEIGHT+TABLE_CELL_HEIGHT*i);
for(let roundNo=1;roundNo<=TotalRounds;roundNo++){
fill('#412014')
textSize(10);
text( `Round No:${roundNo}`,35+(floor((roundNo-1)/(TotalRounds/2)))*APP_WIDTH/2,APP_HEIGHT+TABLE_CELL_HEIGHT*((roundNo-1)%(TotalRounds/2))+10);
fill('#3F51B5')
textSize(10);
text( `${score_toString(round_scores[roundNo])}`,APP_WIDTH/4+(floor((roundNo-1)/(TotalRounds/2)))*APP_WIDTH/2,APP_HEIGHT+TABLE_CELL_HEIGHT*((roundNo-1)%(TotalRounds/2))+10);
}
fill('red');
textSize(15);
text(select_index_label,APP_WIDTH/2,50);
//Display Current Digit
// textAlign(CENTER,CENTER);
fill(0);
textSize(30);
text(`Digit for Auction: ${digits[digits_to_auction[digits_to_auction.length-1]]}`,APP_WIDTH/2,100);
// Display player tokens
textSize(40);
text("🧑🏽💻",APP_WIDTH/4,150);
textSize(20);
text(`Coins: 💰${playerTokens}`,APP_WIDTH/4,200);
let sp = 0;
fill('gold')
for (let t=0; t<playerTokens;t++){
rect(APP_WIDTH/2+floor(t/colnColCount)*40,200-(t%colnColCount)*coin_height,coin_width,coin_height,5);
textSize(5);
text("💵",APP_WIDTH/2+floor(t/colnColCount)*40+coin_width/2,200-(t%colnColCount)*coin_height+coin_height/2)
}
//Display CurrentBid
textSize(20);
fill('black')
text(`Bidding : 💰${currentBid}`,APP_WIDTH/4,280)
fill('gold')
for (let b=0; b<currentBid;b++){
rect(APP_WIDTH/2+floor(b/colnColCount)*40,280-(b%colnColCount)*coin_height,coin_width,coin_height,5);
textSize(5);
text("💵",APP_WIDTH/2+floor(b/colnColCount)*40+coin_width/2,280-(b%colnColCount)*coin_height+coin_height/2)
}
//Display Digits aquired
textSize(10);
fill('navy')
text(won_or_not,APP_WIDTH/2,APP_HEIGHT-80)
textSize(12);
fill('#E91E63')
textStyle(BOLD)
text("DIGITS WON",APP_WIDTH/2,330);
text(`${auctioned_digits.join(" ")}`,APP_WIDTH/2,350);
textStyle(NORMAL)
// Rounds Left
textSize(10);
fill('#673AB7')
textStyle(BOLD)
text( `Round No: ${RoundNo}`,40,10);
textStyle(NORMAL)
//logout button position
minus_button.position(APP_WIDTH/2-2*minus_button.width,APP_HEIGHT-220);
plus_button.position(APP_WIDTH/2+minus_button.width,APP_HEIGHT-220);
// for(let i=0;i<auctioned_digits.length;i++){
// numpad[i].position(width/2-button_length/2-5+floor(i%3)*5 + (i%3)*30,height-160 + 30*floor(i/3)+floor(i/3)*10);
// }
go_button.position(APP_WIDTH/2-button_length ,APP_HEIGHT-150);
if(final_number!=''){
textSize(15);
textStyle(BOLD);
text(`Your Final Number`,APP_WIDTH/2,APP_HEIGHT -60);
textStyle(NORMAL);
text(`${final_number}`,APP_WIDTH/2,APP_HEIGHT -40);
}
//play next round
if(gameOver){
fill('#6495ED');
rect(APP_WIDTH/2+10,APP_HEIGHT/2-100,150,30,10);
textSize(10);
fill('black');
text('Click here to play next round!',APP_WIDTH/2+85,APP_HEIGHT/2-85)
}
}
function mousePressed(){
if(RoundNo<TotalRounds && gameOver && mouseX>APP_WIDTH/2+10 && mouseX<APP_WIDTH/2+110 && mouseY>APP_HEIGHT/2-100 && mouseY< APP_HEIGHT/2 -70){
gameOver=false;
setup();
RoundNo++;
}
return;
}
function BidIncrease(){
if(playerTokens>0 && currentBid<maxTokens &&!gameOver){
currentBid++;
playerTokens--;
}
won_or_not="";
return;
}
function BidDecrease(){
if(playerTokens<maxTokens && currentBid>0 && !gameOver){
currentBid--;
playerTokens++;
}
won_or_not="";
return;
}
function go(){
if(!gameOver){
// playerTokens -= currentBid;
if(currentBid>0){
if (currentBid >= digit_prices[digits_to_auction[digits_to_auction.length-1]]){
auctioned_digits.push(digits[digits_to_auction[digits_to_auction.length-1]]);
auctioned_digits_raw.push(digits_to_auction[digits_to_auction.length-1]);
won_or_not = `You won ${digits[digits_to_auction[digits_to_auction.length-1]]} 👍🏼`
}
else{
won_or_not = `Sorry You didn't win ${digits[digits_to_auction[digits_to_auction.length-1]]} 👎🏼`
}
digits_to_auction.pop();
currentBid=0;
select_index_label="";
if(playerTokens == 0){
gameOver=true;
if(RoundNo == TotalRounds){
select_index_label="All Rounds are Over!.🙏🏻";
}
else{
select_index_label=`Round ${RoundNo} is over!`;
}
auctioned_digits_raw.sort((a,b) => b-a);
round_scores[RoundNo]=int(auctioned_digits_raw.join(""));
let final_digits = auctioned_digits_raw.map(x=>digits[x]);
final_number = auctioned_digits_raw.map(x=>digits[x]).join("");
sendData();
}
}
}
}
//google sheet
let url = "https://script.google.com/macros/s/AKfycbzsXbjAMIjj8J4MY-oxSnMZVD-sMxCpYYxeQ3_jQUqKYbtMMOXPq0LHJESGnR6xjw_X/exec"; // Replace with the
function sendData() {
let data = {
username: "Nagesh",
score: int(random(1, 100)), // Random score for example
gameNo: 1
};
fetch(url, {
method: "POST",
mode: "no-cors",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data)
}).then(() => console.log("Data Sent"));
}