-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
L'eseguibile è stato compilato in data: ago 25 2015 02:38:44
- Loading branch information
0 parents
commit 26b0a92
Showing
6 changed files
with
405 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
#include<iostream> | ||
#include<fstream> | ||
#include<string.h> | ||
#include<windows.h> | ||
#include<vector> | ||
using namespace std; | ||
|
||
|
||
struct player | ||
{ | ||
string name; | ||
int kill; | ||
int death; | ||
float rateo; | ||
bool connect; | ||
int punteggio; | ||
int autokill; | ||
|
||
}; | ||
|
||
int main() | ||
{ | ||
player p; | ||
int Nplayer; | ||
vector<player> v(50); | ||
string n,BeforeN,NomeDelMorto; | ||
|
||
|
||
while(true) | ||
{ | ||
ifstream i("players.txt"); | ||
|
||
|
||
//vedo quanti e i nomi dei player | ||
Nplayer = 0; | ||
while(!i.eof()) | ||
{ | ||
i >> v.at(Nplayer).name; | ||
v.at(Nplayer).name= v.at(Nplayer).name+"^7"; | ||
v.at(Nplayer).kill = 0; | ||
v.at(Nplayer).death = 0; | ||
v.at(Nplayer).autokill = 0; | ||
v.at(Nplayer).rateo = 0.00; | ||
v.at(Nplayer).punteggio = 0; | ||
v.at(Nplayer).connect = false; | ||
Nplayer ++; | ||
|
||
} | ||
i.close(); | ||
|
||
for(int i = 0; i<Nplayer;i++) | ||
{ | ||
//ifstream in("../Giochi/openarena-0.8.8/stderr.txt"); | ||
ifstream in("../stderr.txt"); | ||
while (!in.eof()) | ||
{ | ||
BeforeN = n; | ||
in >> n; | ||
//cout<<n<<endl; | ||
if(n == v.at(i).name || n == v.at(i).name+"'s") | ||
{ | ||
NomeDelMorto = n; | ||
in >> n; | ||
|
||
// Se fa una kill | ||
if( BeforeN == "by" || BeforeN == "was" || BeforeN == "almost" || BeforeN == "ate") | ||
{ | ||
|
||
v.at(i).kill = v.at(i).kill + 1; | ||
} | ||
|
||
|
||
// Se il nome è uguale all'ultima parola sopra | ||
if( n == NomeDelMorto || n == NomeDelMorto+"'s" ) | ||
{ | ||
in >> n; | ||
if( n == "was" || n == "almost" || n == "ate" || n == "blew" || n == "sank" || n == "cratered." || n == "melted" || n == "tripped") | ||
{ | ||
v.at(i).death = v.at(i).death + 1; | ||
if(n == "blew" || n == "sank" || n == "cratered." || n == "melted" || n == "tripped") v.at(i).autokill++; | ||
|
||
} | ||
|
||
} | ||
|
||
// Se è morto | ||
else if( n == "was" || n == "almost" || n == "ate" || n == "blew" || n == "sank" || n == "cratered." || n == "melted" || n == "tripped") | ||
{ | ||
v.at(i).death = v.at(i).death + 1; | ||
if(n == "blew" || n == "sank" || n == "cratered." || n == "melted" || n == "tripped") v.at(i).autokill++; | ||
|
||
} | ||
if( n == "entered") | ||
{ | ||
v.at(i).connect = true; | ||
} | ||
|
||
if( n == "disconnected") | ||
{ | ||
v.at(i).connect = false; | ||
} | ||
|
||
|
||
|
||
} | ||
} | ||
|
||
// calcolo del rateo | ||
float kill = v.at(i).kill; | ||
float death = v.at(i).death; | ||
v.at(i).rateo = kill / death; | ||
// calcolo punteggio finale | ||
v.at(i).punteggio = (kill * 100)-(v.at(i).autokill*20); | ||
v.at(i).punteggio =v.at(i).punteggio+ ( v.at(i).rateo* (v.at(i).punteggio/10)); | ||
if(v.at(i).punteggio < 0)v.at(i).punteggio = 0; | ||
|
||
// ordinamento classifica | ||
for(int i = 0; i<Nplayer-1;i++) | ||
{ | ||
for(int j = 0; j<Nplayer-1;j++) | ||
{ | ||
if(v.at(i).punteggio > v.at(j).punteggio ) | ||
{ | ||
player p; | ||
p = v.at(j); | ||
v.at(j) = v.at(i); | ||
v.at(i) = p; | ||
} | ||
} | ||
} | ||
|
||
} | ||
|
||
// STAMPO PAGINA HTML | ||
ofstream out("index.html"); | ||
out<<"<head>"<<endl; | ||
out<<"<meta http-equiv=" <<"refresh"<<" content=" <<"3>" <<endl; | ||
out<<"<link rel=" <<"stylesheet" <<" type=" <<"text/css" << " href=" <<"css/style.css />"<<endl; | ||
out<<"</head>"<<endl; | ||
out<<"<table>"<<endl; | ||
|
||
out<<"<body>"<<endl; | ||
out<<"<tr>"<<endl; | ||
out<<"<th>"<< "Posizione" <<"</th>"<<endl; | ||
out<<"<th>"<< "Nome" <<"</th>"<<endl; | ||
out<<"<th>"<< "Punteggio" <<"</th>"<<endl; | ||
out<<"<th>"<< "Kill" <<"</th>"<<endl; | ||
out<<"<th>"<< "Death" <<"</th>"<<endl; | ||
out<<"<th>"<< "Autokill" <<"</th>"<<endl; | ||
out<<"<th>"<< "Rateo" <<"</th>"<<endl; | ||
out<<"<th>"<< "Connesso" <<"</th>"<<endl; | ||
out<<"</tr>"<<endl; | ||
|
||
for(int i = 0; i<Nplayer-1;i++) | ||
{ | ||
out<<"<tr>"; | ||
out<<"<td>"<< i+1 <<"</td>"<<endl; | ||
string nome; | ||
nome = v.at(i).name; | ||
nome.erase(nome.size()-2); | ||
out<<"<td>"<< nome <<"</td>"<<endl; | ||
out<<"<td>"<<v.at(i).punteggio <<"</td>"<<endl; | ||
out<<"<td>"<<v.at(i).kill <<"</td>"<<endl; | ||
out<<"<td>"<< v.at(i).death <<"</td>"<<endl; | ||
out<<"<td>"<< v.at(i).autokill <<"</td>"<<endl; | ||
out<<"<td>"<< v.at(i).rateo <<"</td>"<<endl; | ||
if(v.at(i).connect == true) out<<"<td>"<<"<span style="<<"color:green>"<< "Connesso" <<"</span>"<<"</td>"<<endl; | ||
else out<<"<td>"<<"<span style="<<"color:red>"<< "Disconnesso" <<"</span>"<<"</td>"<<endl; | ||
out<<"</tr>"<<endl; | ||
} | ||
out<<"</table>"<<endl; | ||
out<<"</body>"<<endl; | ||
out.close(); | ||
Sleep(2000); | ||
} | ||
return 0; | ||
|
||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
html, | ||
button, | ||
input, | ||
select, | ||
textarea { | ||
color: #222; | ||
} | ||
body { | ||
font-size: 1em; | ||
line-height: 1.4; | ||
background-color: #b3d4fc; | ||
|
||
} | ||
::-moz-selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
::selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
hr { | ||
display: block; | ||
height: 1px; | ||
border: 0; | ||
border-top: 1px solid #ccc; | ||
margin: 1em 0; | ||
padding: 0; | ||
} | ||
img { | ||
vertical-align: middle; | ||
} | ||
fieldset { | ||
border: 0; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
textarea { | ||
resize: vertical; | ||
} | ||
|
||
/* ========================================================================== | ||
Print styles | ||
========================================================================== */ | ||
@media print { | ||
* { | ||
/*background: transparent !important;*/ | ||
color: #000 !important; | ||
/* Black prints faster: h5bp.com/s */ | ||
box-shadow: none !important; | ||
text-shadow: none !important; | ||
} | ||
a, | ||
a:visited { | ||
text-decoration: underline; | ||
} | ||
a[href]:after { | ||
content: " (" attr(href) ")"; | ||
} | ||
abbr[title]:after { | ||
content: " (" attr(title) ")"; | ||
} | ||
/* | ||
* Don't show links for images, or javascript/internal links | ||
*/ | ||
.ir a:after, | ||
a[href^="javascript:"]:after, | ||
a[href^="#"]:after { | ||
content: ""; | ||
} | ||
pre, | ||
blockquote { | ||
border: 1px solid #999; | ||
page-break-inside: avoid; | ||
} | ||
thead { | ||
display: table-header-group; | ||
/* h5bp.com/t */ | ||
} | ||
tr, | ||
img { | ||
page-break-inside: avoid; | ||
} | ||
img { | ||
max-width: 100% !important; | ||
} | ||
@page { | ||
margin: 0.5cm; | ||
} | ||
p, | ||
h2, | ||
h3 { | ||
orphans: 3; | ||
widows: 3; | ||
} | ||
h2, | ||
h3 { | ||
page-break-after: avoid; | ||
} | ||
} | ||
/* ========================================================================== | ||
Structure & Defaults | ||
========================================================================== */ | ||
html, | ||
body { | ||
font-size: 100%; | ||
width: 100%; | ||
height: 100%; | ||
|
||
} | ||
body { | ||
|
||
color: #777777; | ||
font-size: 18px; | ||
line-height: 24px; | ||
font-family: 'Open Sans', sans-serif; | ||
overflow-x: hidden; | ||
background-color: black; | ||
} | ||
|
||
|
||
/* ========================================================================== | ||
Media Queries | ||
========================================================================== */ | ||
|
||
table { | ||
position:absolute; | ||
left: 15%; | ||
pointer: default; | ||
margin: 20px; | ||
cursor: default; | ||
width: 70%; | ||
text-align: center; | ||
background: rgba(255, 255, 255, 0.15); | ||
} | ||
|
||
th { | ||
border-bottom: 1px solid white; | ||
} | ||
|
||
th, td { | ||
|
||
} | ||
|
||
tr { | ||
transition: all .4s; | ||
} | ||
|
||
td, th { | ||
transition: all .4s; | ||
padding: 10px; | ||
} | ||
|
||
tr:hover, tr:focus { | ||
background: rgba(255, 255, 255, 0.10); | ||
} | ||
|
||
td:hover, td:focus, th:hover, th:focus { | ||
/*transform: scale(1.05);*/ | ||
background: rgba(255, 255, 255, 0.15); | ||
} | ||
|
||
td:active, th:active { | ||
/*transform: scale(0.95);*/ | ||
background-opacity: 0.4; | ||
} |
Oops, something went wrong.