-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal.html
173 lines (152 loc) · 5.49 KB
/
final.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Quantum Chatbot</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #fff;
margin: 0;
font-family: Times, sans-serif;
}
#container {
text-align: center;
margin-bottom: 2rem;
}
#user_input {
width: 80%;
padding: 0.5rem;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
}
#quantumFieldContainer {
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
border: 1px solid #000;
margin-top: 2rem;
animation: spin 10s linear infinite;
}
.innerSphere {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.quantumBit {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
transform-origin: 100px 100px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="container">
<h1>Virtual Quantum Chatbot</h1>
<input type="text" id="user_input" placeholder="Type your query and hit Enter..." onkeypress="handleKeyPress(event)">
</div>
<div id="quantumFieldContainer">
<div class="innerSphere" id="innerSphere"></div>
</div>
<script>
const audioContext = new AudioContext();
const charToNote = { '0': 261.63, '1': 293.66, '2': 329.63, 'A': 349.23, 'D': 392.00, 'H': 440.00, 'X': 493.88, '+': 523.25 };
const rollQuantumDie = () => ['0', '1', '2'][Math.floor(Math.random() * 3)];
const virtualSchrodingersCat = () => Math.random() < 0.5 ? 'A' : 'D';
const virtualHamzatsCat = () => ['H', 'X', '+'][Math.floor(Math.random() * 3)];
function generateMelody(quantumField) {
[...quantumField].forEach((char, i) => playNote(charToNote[char], i * 0.5));
}
function playNote(frequency, delay) {
const oscillator = audioContext.createOscillator();
oscillator.type = 'sine';
oscillator.frequency.setValueAtTime(frequency, audioContext.currentTime + delay);
oscillator.connect(audioContext.destination);
oscillator.start(audioContext.currentTime + delay);
oscillator.stop(audioContext.currentTime + delay + 0.5);
}
function fib(n) {
let a = 0, b = 1, sum;
for (let j = 0; j < n; j++) {
sum = a + b;
a = b;
b = sum;
}
return a;
}
function bounceBehavior(quantumBit, angle, radius) {
if (quantumBit === '0') {
return radius * 1.1;
} else if (quantumBit === '1') {
return radius * 0.9;
} else {
return radius;
}
}
function getResponse() {
let quantumDieField = '';
let schrodingersCatField = '';
let hamzatsCatField = '';
let i = 0;
const container = document.getElementById('quantumFieldContainer');
const innerSphere = document.getElementById('innerSphere');
const innerSphereRadius = 25;
const interval = setInterval(() => {
if (i >= 4000) {
clearInterval(interval);
generateMelody(quantumDieField + schrodingersCatField + hamzatsCatField);
} else {
const quantumBit = rollQuantumDie();
const schrodingersCat = virtualSchrodingersCat();
const hamzatsCat = virtualHamzatsCat();
quantumDieField += quantumBit;
schrodingersCatField += schrodingersCat;
hamzatsCatField += hamzatsCat;
const fibValue = fib(i % 16);
const angle = (i / 4000) * 360;
let radius = fibValue * 2;
radius = bounceBehavior(quantumBit, angle, radius);
let x = radius * Math.cos(angle * Math.PI / 180);
let y = radius * Math.sin(angle * Math.PI / 180);
const distanceFromCenter = Math.sqrt(x * x + y * y);
if (distanceFromCenter < innerSphereRadius) {
x = innerSphereRadius * Math.cos(angle * Math.PI / 180);
y = innerSphereRadius * Math.sin(angle * Math.PI / 180);
}
const div = document.createElement('div');
div.className = 'quantumBit';
div.style.left = `${100 + x}px`;
div.style.top = `${100 + y}px`;
div.style.backgroundColor = quantumBit === '0' ? '#000' : quantumBit === '1' ? '#555' : '#aaa';
container.appendChild(div);
innerSphere.style.backgroundColor = hamzatsCat === 'H' ? '#000' : hamzatsCat === 'X' ? '#555' : '#aaa';
}
i++;
}, 50);
}
function handleKeyPress(event) {
if (event.key === 'Enter') {
getResponse();
event.preventDefault();
}
}
</script>
</body>
</html>