Mercurial > hgrepos > hgweb.cgi > skipweb
view event/oasis2017/ikusei/tamago.rb @ 3944:e45173af0101 default tip master
chenge game link
author | KOMATSU Kotaro <c118089@roy.e.koeki-u.ac.jp> |
---|---|
date | Mon, 20 Jan 2020 18:13:48 +0900 |
parents | 1cba3ac996ea |
children |
line wrap: on
line source
#!/usr/bin/env ruby # -*- coding: utf-8 -*- Encoding.default_internal = "UTF-8" Encoding.default_external = "UTF-8" require 'cgi' require 'csv' require 'sqlite3' c = CGI.new(:accept_charset => "UTF-8") #print "Content-type: text/html; charset=UTF-8\n\n" number = c["rd"] img = c["img"] file = "../db/point.sq3" #cookie関係 cookie_id=c.cookies["id"][0] form_seikai=c["seikai"] #もし正解したら?とかじゃない? form_name=c["playname"] #名前入力 someValue="IKD" if cookie_id == nil newid = Time.now.to_i.to_s + "/" + rand(99999).to_s id = newid else id = cookie_id end # idをすぐcookieで相手ブラウザに送る # 変数の期限を24時間に設定し、expire変数に入れる expire = (Time.now+24*3600).gmtime.strftime("%a, %d %b %Y %H:%M:%S GMT") printf("Content-type: text/html; charset=UTF-8\n") printf("Set-Cookie: id=%s; expires=%s\n\n", id, expire) db = SQLite3::Database.new(file) db.execute("PRAGMA foreign_keys=on") db.execute("CREATE TABLE IF NOT EXISTS " + "users(id text primary key, name text, creation text)") db.execute("CREATE TABLE IF NOT EXISTS " + "point(id, keyword text, FOREIGN KEY(id) REFERENCES users(id),UNIQUE(id, keyword))") if form_seikai > "" && id > ''# もし正解したら db.execute("DELETE FROM point WHERE id=?", id) end # cookie関連はここまでだと思っている ################################################################## ユーザ登録 playname = form_name if form_name > "" # フォームでnameが送られたならそれ優先 now = Time.now.strftime("%F %T") db.execute("REPLACE INTO users VALUES(?, ?, ?)", id, form_name, now); else # フォームでnameなければdbから # dbname = db.execute("SELECT name from users WHERE id=?", id)[0][0] #if dbname != nil # playname = dbname # データベースからのの名前をプレイ名とする #end #end dbname = db.execute("SELECT name from users WHERE id=?", id)[0] if dbname != nil && dbname[0] playname = dbname[0] end end if playname == "" print(<<-EOF) <form action="#{File.basename($0)}" method="POST"> <p>プレイ名を入れてください: <input type="text" name="playname"> <input type="submit" value="送信"> <input type="reset" value="リセット"> </form> EOF exit end #printf("<h1>%sさんのチャレンジ</h1>\n", playname) ################################################################## 初回処理 number = c["rd"] img = c["img"] def outinput(value, name) printf("<label><input type=\"radio\" name=\"rd\" value=\"%s\">%s</label>", value, name) end def imgsrc(img) printf("<img src=\"%s\">", img) end if number == "" #初回起動時のみ number = "1" #numberに"1"を代入 end x = Hash.new CSV.foreach("tamago.csv") do |row| q_number = row.shift question = row.shift x[q_number] = [question, Hash[*row]] ##x[number] = {"Q" => question, "A" => Hash[*row]} end #p x #encoding:"SJIS:UTF-8" gazou1="tori1.png"#1ページ目の画像 link1 ="tori1.png"#1ページ目のリンク画像 alt1 ="hiyoko"#1ページ目のalt画像 gazou2="tori2.png"#2ページ目の画像 link2 ="tori2.png"#2ページ目のリンク画像 alt2 ="tori"#2ページ目のalt画像 gazou3="tori3.png"#3ページ目の画像 link3 ="tori3.png"#3ページ目のリンク画像 alt3 ="tori"#3ページ目のalt画像 ongaku1="hiyoko1.mp3" ongaku2="hiyoko2.mp3" ongaku3="hiyoko3.mp3" ongaku4="hiyoko.ogg" def outinput(value, name) printf("<label><input type=\"radio\" name=\"rd\" value=\"%s\">%s</label>", value, name) end def imgsrc(img) printf("<img src=\"%s\">", img) end if number == "" #初回起動時のみ number = "1" #numberに"1"を代入 end print(<<-EOF) <!DOCTYPE html> <html lang="ja"> <head><title>鳥</title> <link rel="stylesheet" type="text/css" href="tamago.css" > <meta name="viewport" content="width=device-width"> </head> <body> EOF printf("<h1>%sさんのチャレンジ</h1>\n", playname) #print"<html><head><title>鳥</title> #<meta name=\"viewport\" content=\"width=device#-width,initial-scale=1\"> #<link rel=\"stylesheet\" type=\"text/css\" hre#f=\"tamago.css\"></head><body>\n" print"<form method=\"POST\" action=\"./tamago.rb\">\n" q = x[number] #ifで場合分け初めてその問題に行く、正解、不正解1、不正解2,の4通り if number == "1" || number == "5" || number == "9" #初めて挑戦 printf("<p>%s</p>", q[0]) if number == "1" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link1,gazou1,alt1) elsif number == "5" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link2,gazou2,alt2) elsif number == "9" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link3,gazou3,alt3) end for v, sel in q[1] outinput(v, sel) end print"<input name=\"ok\" type=\"submit\" value=\"送信\">\n" print"<input name=\"ng\" type=\"reset\" value=\"リセット\">\n" elsif number == "3" || number == "8" || number == "10" #正解 printf("%s", q[0]) #printf("%s", q[1]) if number == "3" print("<p>") printf("<audio controls autoplay loop false preload=\"auto\"><source src=\"%s\"></audio>",ongaku1) print("<\p>") printf("<label><input type=\"radio\" name=\"rd\" value=\"5\">次へ進もう<br></label>") # printf("<input type=\"submit\" value=\"次へ\">") elsif number =="8" print("<p>") printf("<audio controls autoplay loop false preload=\"auto\"><source src=\"%s\"></audio>",ongaku2) print("</p>") printf("<label><input type=\"radio\" name=\"rd\" value=\"9\">次へ進もう<br></label>") elsif number == "10" print("<p>") printf("<audio controls autoplay loop false preload=\"auto\"><source src=\"%s\"></audio>",ongaku3) print("<\p>") printf("<label><input type=\"radio\" name=\"rd\" value=\"13\">次へ進もう<br></label>") end printf("<input type=\"submit\" value=\"次へ\">") db.execute("REPLACE INTO point VALUES(?, ?)", id, someValue) elsif number == "2" || number == "6" || number == "11" #不正解1 print("<h1>残念!もう一度挑戦だーー</h1>") printf("<p>%s</p>", q[0]) if number == "2" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link1,gazou1,alt1) elsif number == "6" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link2,gazou2,alt2) elsif number == "11" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link3,gazou3,alt3) end for v, sel in q[1] outinput(v, sel) end print"<input name=\"ok\" type=\"submit\" value=\"送信\">\n" print"<input name=\"ng\" type=\"reset\" value=\"リセット\">\n" elsif number == "4" || number == "7" || number == "12" #不正解2 print("<h1>惜しい!もう一度やってみよーー</h1>") printf("<p>%s</p>", q[0]) if number == "4" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link1,gazou1,alt1) elsif number == "7" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link2,gazou2,alt2) elsif number == "12" printf("<p><a href=\"%s\"><img src=\"%s\" alt=\"%s\" height=\"300px\" width=\"300px\"></a></p>",link3,gazou3,alt3) end for v, sel in q[1] outinput(v, sel) end print"<input name=\"ok\" type=\"submit\" value=\"送信\">\n" print"<input name=\"ng\" type=\"reset\" value=\"リセット\">\n" elsif number == "13" print("<p>音楽の融合</p>\n") printf("<audio controls autoplay loop false preload=\"auto\"><source src=\"%s\"></audio>\n",ongaku4) #printf("<p><a href=\"http://roy.e.koeki-u.ac.jp/~c115036/ikusei2017/ikusei.html\">topページに戻る</a></p>\n") end print"</form>\n" print "</body>\n" print "</html>\n"