119 lines
3.5 KiB
Python
119 lines
3.5 KiB
Python
import functools
|
|
from multiprocessing.shared_memory import SharedMemory
|
|
import asyncio
|
|
import random
|
|
from typing import NamedTuple, Optional
|
|
from aiohttp_socks import ProxyConnector
|
|
import socketio
|
|
import aiohttp
|
|
import time
|
|
|
|
OFFSET_STATE = 0
|
|
OFFSET_AVOID = 125000
|
|
OFFSET_CANVAS = 250000
|
|
OFFSET_MASK = 375000
|
|
|
|
|
|
class PixelState(NamedTuple):
|
|
state: bool
|
|
avoid: bool
|
|
canvas: bool
|
|
mask: bool
|
|
|
|
|
|
class WorkerManager:
|
|
def __init__(self, shmem_name: str = "omcb-bot"):
|
|
self.shmem_name = shmem_name
|
|
self.base = "https://onemillioncheckboxes.com"
|
|
self.delay = 0.25
|
|
self.queue: asyncio.Queue[int] = asyncio.Queue(64)
|
|
|
|
self.n_toggles = 0
|
|
|
|
async def queue_manager(self):
|
|
index = random.randint(0, 999999)
|
|
while True:
|
|
index = (index + 1) % 1000000
|
|
byte, bit = divmod(index, 8)
|
|
mask = 0x80 >> bit
|
|
|
|
if self.shmem.buf[OFFSET_AVOID + byte] & mask:
|
|
continue
|
|
|
|
if (self.shmem.buf[OFFSET_MASK + byte] & mask) == 0:
|
|
continue
|
|
|
|
if (self.shmem.buf[OFFSET_CANVAS + byte] & mask) != (
|
|
self.shmem.buf[OFFSET_STATE + byte] & mask
|
|
):
|
|
await self.queue.put(index)
|
|
|
|
async def writer(self, bot_index: int, proxy: Optional[str] = None):
|
|
connector = ProxyConnector.from_url(proxy) if proxy else None
|
|
async with aiohttp.ClientSession(connector=connector) as http:
|
|
sio = socketio.AsyncClient(http_session=http)
|
|
|
|
async def writer_itself():
|
|
print("Writer running")
|
|
while not sio.connected:
|
|
await asyncio.sleep(0.1)
|
|
print("Connected and running")
|
|
while sio.connected:
|
|
index = await self.queue.get()
|
|
byte, bit = divmod(index, 8)
|
|
mask = 0x80 >> bit
|
|
|
|
if self.shmem.buf[OFFSET_AVOID + byte] & mask:
|
|
continue
|
|
|
|
if (self.shmem.buf[OFFSET_MASK + byte] & mask) == 0:
|
|
continue
|
|
|
|
if (self.shmem.buf[OFFSET_CANVAS + byte] & mask) != (
|
|
self.shmem.buf[OFFSET_STATE + byte] & mask
|
|
):
|
|
byte, bit = divmod(index, 8)
|
|
self.n_toggles += 1
|
|
self.shmem.buf[OFFSET_STATE + byte] ^= 0x80 >> bit
|
|
await sio.emit("toggle_bit", {"index": index})
|
|
await asyncio.sleep(self.delay)
|
|
print("Writer closed")
|
|
|
|
sio.on("connect", writer_itself)
|
|
|
|
await sio.connect(self.base.replace("http", "ws"))
|
|
await sio.wait()
|
|
|
|
async def status_display(self):
|
|
last_printout = time.time()
|
|
while True:
|
|
await asyncio.sleep(1)
|
|
diff = time.time() - last_printout
|
|
|
|
print()
|
|
print(f"Queue size: {self.queue.qsize()}/{self.queue.maxsize}")
|
|
print(f"Toggles: {self.n_toggles / diff:.2f}/s")
|
|
|
|
self.n_toggles = 0
|
|
last_printout = time.time()
|
|
|
|
async def __aenter__(self):
|
|
self.shmem = SharedMemory(self.shmem_name)
|
|
return self
|
|
|
|
async def __aexit__(self, a, b, c):
|
|
self.shmem.close()
|
|
|
|
|
|
async def main():
|
|
async with WorkerManager() as mgr:
|
|
await asyncio.gather(
|
|
mgr.queue_manager(),
|
|
mgr.status_display(),
|
|
*[mgr.writer(i) for i in range(4)]
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|