-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimon.html
135 lines (130 loc) · 4.77 KB
/
simon.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
<!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, input, h1 {
font-family: 'Times New Roman', serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #fff;
margin: 0;
}
#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, .quantumBit {
position: absolute;
border-radius: 50%;
text-align: center;
color: #000;
}
.innerSphere {
width: 50px;
height: 50px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.quantumBit {
width: 10px;
height: 10px;
transform-origin: 100px 100px;
line-height: 10px;
font-size: 10px;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { 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 = { 'O': 261.63, '1': 293.66, '2': 329.63, 'H': 349.23, '𝕏': 392.00, '+': 440.00, '0': 493.88 };
const rollQuantumDie = () => ['H', '𝕏', '+'][Math.floor(Math.random() * 3)];
const virtualSchrodingersCat = () => Math.random() < 0.5 ? '0' : '1';
const virtualHamzatsCat = () => ['O', '1', '2'][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 getResponse() {
let quantumDieField = '';
let schrodingersCatField = '';
let hamzatsCatField = '';
let i = 0;
const container = document.getElementById('quantumFieldContainer');
const innerSphere = document.getElementById('innerSphere');
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;
createQuantumBitDisplay(quantumBit, schrodingersCat, hamzatsCat, i);
}
i++;
}, 50);
} function createQuantumBitDisplay(quantumBit, schrodingersCat, hamzatsCat, i) {
const angle = (i / 4000) * 360;
const div = document.createElement('div');
div.className = 'quantumBit';
div.innerText = (i % 2 === 0) ? quantumBit : (i % 3 === 0) ? schrodingersCat : hamzatsCat;
div.style.transform = `rotate(${angle}deg)`;
document.getElementById('quantumFieldContainer').appendChild(div);
document.getElementById('innerSphere').innerText = hamzatsCat;
}
function handleKeyPress(event) {
if (event.key === 'Enter') {
getResponse();
event.preventDefault();
}
}
</script>
</body>
</html>