Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Being schizophrenic is better than living alone.


devel / comp.lang.javascript / Mänggggggggggggggggg....... File 2.

SubjectAuthor
o Mänggggggggggggggggg....... File 2.Keegi ikka

1
Mänggggggggggggggggg....... File 2.

<5c69f95b-5eab-4db3-8102-25ea98b162fbn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17899&group=comp.lang.javascript#17899

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a37:43d4:0:b0:6b8:e3ba:ddfc with SMTP id q203-20020a3743d4000000b006b8e3baddfcmr17358059qka.192.1660715235893;
Tue, 16 Aug 2022 22:47:15 -0700 (PDT)
X-Received: by 2002:a05:6870:b619:b0:10f:84f:ea0c with SMTP id
cm25-20020a056870b61900b0010f084fea0cmr1019675oab.160.1660715235606; Tue, 16
Aug 2022 22:47:15 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Tue, 16 Aug 2022 22:47:15 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=82.131.36.21; posting-account=GXOiAgkAAABFyexKGDGOZoSnK7g0BqhF
NNTP-Posting-Host: 82.131.36.21
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <5c69f95b-5eab-4db3-8102-25ea98b162fbn@googlegroups.com>
Subject: Mänggggggggggggggggg....... File 2.
From: he1983912@mail.com (Keegi ikka)
Injection-Date: Wed, 17 Aug 2022 05:47:15 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 12750
 by: Keegi ikka - Wed, 17 Aug 2022 05:47 UTC

clickgame.html

<html>
<head>
<meta name="viewport" content="width=345, initial-scale=1.0,
minimum-scale=1.0, maximum-scale=1.0">
<script src="yyyyyyyyyyyyyyyyyyyy.yy"></script>
<style type="text/css">
..a1 {
} ..a15 {
font-size:15px;
} ..currtime {
} ..a2 {
width: 645px;
position:absolute;
top:400px;
} ..link1 {
} a:link {
} ..a3 {
position:relative;
top:0vw;
} ..myCanvas {
position:relative;
left:0vw;
display: inline-block;
top:0px;
} ..score {
font-size:15px;
} ..currtime {
font-size:15px;
} ..toplist {
font-size:15px;
}

..aaa1 {
display:inline-block;
height: 489px;
display:absolute;
top:0px;
} @media (max-width: 645px) {
.topplayers {
display:block;
position:relative;
width:645px;
vertical-align:top;
left: 0px;
top: 0px;
}
} @media (min-width: 645px) {
..topplayers {
display:block;
position:relative;
width:645px;
vertical-align:top;
left: 0px;
top: 0px;
} }

body {
background-color: lightblue;
color: white;
}

</style>
</head>
<body>
<h1 class="a1">Clicking game. </h1>
<p class="a3"></p>
<div class="aaa1">
<canvas class="myCanvas" width="665" height="480" style="border:1px solid
#d3d3d3;">
Error</canvas>
<p class="a2"></p>
</div>
<div class="topplayers">
<h1 class="a15">Click as many stars as you can in 3 seconds !</h1>
<button id="startgame1" name="B e g i n ........."
onclick="startgameofclicks()">B e g i n .........</button>
<h1 class="a15">Clicks:</h1>
<div class="score">0</div>
<h1 class="a15">Time:</h1>
<div class="currtime">0</div>
<h1 class="a15">Top players:</h1>
<div class="toplist"></div>
</div>

<script>
var aaa=26;
var aaa12=6;

var circles = new Array();

var circlenr=1;
var x = 10;
var y = 100;
var r = 15;
var nextX, nextY;
var WIDTH = 613;
var HEIGHT = 399;
var countt=0;
var circlesnumber=1;
var gamestatus="";
var newcirclecreationcount=0;
var playerscore=0;

function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}

function randomdir(direction) {
newdirection="";
while(true) {
var newd=getRandomInt(1,4);
if(newd==1) newdirection="right";
if(newd==2) newdirection="up";
if(newd==3) newdirection="left";
if(newd==4) newdirection="down";
if(direction!=newdirection) break;
}
return newdirection;
} function randomdir() {
newdirection="";
var newd=getRandomInt(1,4);
if(newd==1) newdirection="right";
if(newd==2) newdirection="up";
if(newd==3) newdirection="left";
if(newd==4) newdirection="down";
return newdirection;
} function getnextdegree(degree) {
var newdeg=degree+10;
if(newdeg>359) newdeg=newdeg-360;
return newdeg;
}

function circlescollidingextended(ca1_x, ca1_y, ca2_x, ca2_y, radiusa1) {

if(Math.sqrt((ca1_x-ca2_x)*(ca1_x-ca2_x)+(ca1_y-ca2_y)*(ca1_y-ca2_y)<radiusa1*2))
return true;
return false;
}

function cancreatecircle(x111, y111) {
var collision=false;
for (var i=0; i<circles.length; i++) {

if(circlescollidingextended(x111,y111,circles[i].x,circles[i].y,circles[i].radius))
{ collision=true;
return false;
break;
}
}
if(collision) return false;
return true;
}

function circlescolliding(circlea1, circlea2) {

if(Math.sqrt((circlea1.x-circlea2.x)*(circlea1.x-circlea2.x)+(circlea1.y-circlea2.y)*(circlea1.y-circlea2.y))<circlea1.radius*2)
return true;
return false;
}

function rgbToHexaaa(ccccc) {
var hex = ccccc.toString(16);
return hex.length == 1 ? "0" + hex : hex;
} function rgbToHex(r, g, b) {
return "#" + rgbToHexaaa(r) + rgbToHexaaa(g) + rgbToHexaaa(b);
}

function getnextcolor() {
var aa1=getRandomInt(0,256);
var aa2=getRandomInt(0,256);
var aa3=getRandomInt(0,256);
return rgbToHex(aa1, aa2, aa3);
}

var c = document.getElementsByClassName("MyCanvas")[0];
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.rect(0, 0, 347, 423);
ctx.closePath();

function isinCircle(evx, evy, circlex, circley, r) {
return Math.sqrt((evx-circlex)*(evx-circlex) +
(evy-circley)*(evy-circley)) < r;
} c.addEventListener('click', function(event) {
var rect = c.getBoundingClientRect();

var mouse_x=(event.clientX - rect.left) / (rect.right - rect.left) *
c.width;
var mouse_y=(event.clientY - rect.top) / (rect.bottom - rect.top) *
c.height;

var canvasOffset=$(".myCanvas").offset();

var offsetX=canvasOffset.left;
var offsetY=canvasOffset.top;
var ev_x=event.pageX-offsetX;
var ev_y=event.pageY-offsetY;
for (var i = circles.length - 1; i >= 0; --i) {
if(isinCircle(ev_x, ev_y, circles[i].x+7.5, circles[i].y+7.5, 30)) {
if(gamestatus=="stop") break;
playerscore++;
document.getElementsByClassName("score")[0].innerHTML = playerscore;
circles[i].dontdraw=true;
circlefadeout(circles[i], aaa*2, i);
} else {
} }
});

function circlefadeout(circleabc, circlewidthabc,circleidx) {
circleabc.x=circleabc.x-61;
circleabc.y=circleabc.y-61;
circlewidthabc=circlewidthabc+122;
if(circlewidthabc>7292) {
circles.splice(circleidx,1);
return;
} ctx.beginPath();
ctx.clearRect(circleabc.x, circleabc.y, circlewidthabc, circlewidthabc);
imgObj=new Image();
imgObj.src=circleabc.imagesrc;
ctx.drawImage(imgObj, circleabc.x, circleabc.y,
circlewidthabc,circlewidthabc);
ctx.closePath();
setTimeout(function() { circlefadeout(circleabc, circlewidthabc,circleidx);
}, 2);
}

var imgObj;

function clear() {
ctx.clearRect(0, 0, c.width, c.height);
}

function drawcircle(circlea) {

ctx.save();
ctx.beginPath();
ctx.translate(circlea.x+aaa,circlea.y+aaa);
circlea.degree=getnextdegree(circlea.degree);
ctx.rotate(circlea.degree*Math.PI/180);
ctx.translate(-circlea.x-aaa,-circlea.y-aaa);
imgObj=new Image();
imgObj.src=circlea.imagesrc;
ctx.drawImage(imgObj, circlea.x, circlea.y, aaa*2,aaa*2);
ctx.closePath();
ctx.restore();

}

function createnewcircle() {

var image000=Array("1.png", "2.png", "3.png", "4.png", "5.png", "6.png", "7.png", "8.png", "9.png", "000.png");

var imagesrc000 = image000[Math.floor(Math.random()*image000.length)];

var x_rand=getRandomInt(0,WIDTH);
var y_rand=getRandomInt(0,HEIGHT);
if(!cancreatecircle(x_rand,y_rand)) {
newcirclecreationcount++;
if(newcirclecreationcount>987654321) {
gamestatus='stop';
return;
} createnewcircle();
return;
} var newid=circlenr++;
var newcirc = {
x: x_rand,
y: y_rand,
radius: aaa,
direction: randomdir(),
id: 're'+newid,
degree: 0,
dontdraw: false,
imagesrc: imagesrc000
} circles.push(newcirc);
drawcircle(newcirc);
}

c.onclick = function (event)
{ if(gamestatus=="stop") return;
} var nameentered=false;

function displaytoppl() {

$.ajax({
url: 'process.php',
dataType: 'json',
type: 'POST',
async: true,
data: { action: 'get'},
success: function( data, textStatus, jQxhr ){
var data1=data;
var listofpl="Player &nbsp;&nbsp;&nbsp; Clicks<br>";
for(var i=0; i<data1.length; i++) {
listofpl=listofpl+data1[i]['playername']+" &nbsp;&nbsp;&nbsp;"+data1[i]['playerscore']+"<br>";
} document.getElementsByClassName("toplist")[0].innerHTML = listofpl;
},
error: function( jqXhr, textStatus, errorThrown ){
alert(errorThrown);
} });
}

function entername() {

if(nameentered) return;
var name = prompt("Your name:", "");
var psc=playerscore;
nameentered=true;
$.ajax({
url: 'process.php',
dataType: 'text',
type: 'POST',
async: true,
data: { playername: name, playerscore: psc, action: 'add'},
success: function( data, textStatus, jQxhr ){
displaytoppl();
},
error: function( jqXhr, textStatus, errorThrown ){
displaytoppl();
} });
}

function makeamove(circle) {


Click here to read the complete article
1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor