From 92b748c6d3d11981ea46a6b1becf56dce2dd9b59 Mon Sep 17 00:00:00 2001 From: Valdos Sine Date: Sun, 1 Sep 2013 21:34:55 +0400 Subject: [PATCH] autumm2013 --- autumm2013/randomize.py | 32 ++++++++++++++++++++++++++++++++ autumm2013/table.txt | 21 +++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100755 autumm2013/randomize.py create mode 100644 autumm2013/table.txt diff --git a/autumm2013/randomize.py b/autumm2013/randomize.py new file mode 100755 index 0000000..6ad6238 --- /dev/null +++ b/autumm2013/randomize.py @@ -0,0 +1,32 @@ +#!/usr/bin/python2 +# -*- coding: utf-8 -*- + +import random, time + +def write_user(username, table_size): + repeater = False + random_seed = random.choice(range(1, table_size)) + tfile = open('table.txt', 'r+a') + tabledata = tfile.readlines() + for line in tabledata: + if line.split(' | ')[0] == str(random_seed): + # repeat from begin + repeater = True + write_user(username, table_size) + # if we haven't matching number, write das line + if repeater == False: + tfile.write("%i | %s\n" % (random_seed, username)) + +def check_file(username, table_size): + try: + tablefile = open('table.txt', 'r') + write_user(username, table_size) + except IOError: + tablefile = open('table.txt', 'w') + tablefile.write("Жеребьевка участников LORChess.\nРазмер таблицы участников: %s.\nДанный файл является неизменяемым и создаваемым один раз.\nUNIX timestamp: %i\n========\n\n" % (table_size - 1, int(time.time()))) + tablefile.close() + write_user(username, table_size) + + +nickname = raw_input("Введите имя игрока: ") +check_file(nickname, 17) diff --git a/autumm2013/table.txt b/autumm2013/table.txt new file mode 100644 index 0000000..40c7de7 --- /dev/null +++ b/autumm2013/table.txt @@ -0,0 +1,21 @@ +Жеребьевка участников LORChess. +Размер таблицы участников: 16. +Данный файл является неизменяемым и создаваемым один раз. +UNIX timestamp: 1378056556 +======== + +1 | DoctorSinus +6 | Michkova +5 | J +4 | aptyp +7 | HunOL +2 | Kakadu +14 | Magian +9 | iVS +15 | Genuine +12 | shell-script +13 | redgremlin +16 | LongLiveUbuntu +11 | qulinxao +3 | trex6 +10 | Nedis