X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Ffetch_group.cpp;h=75e458a4f9b80ed9c60c598935c3ca51846ffa77;hp=e1d0112160f2fa6f9e85d692e731f5f0e32fd9d1;hb=32d2a098bec8a1ace0f86f28110da45d060f8447;hpb=f40fa6f12fb246c09e925e97bcd7c40f8d2fa59c diff --git a/bigscreen/fetch_group.cpp b/bigscreen/fetch_group.cpp index e1d0112..75e458a 100644 --- a/bigscreen/fetch_group.cpp +++ b/bigscreen/fetch_group.cpp @@ -5,7 +5,8 @@ FetchGroup::FetchGroup(unsigned tournament, unsigned round, unsigned parallel, G void FetchGroup::operator() (pqxx::transaction<> &t) { - pqxx::result res( t.exec("SELECT round,parallel,position,playmode,difficulty,songnumber,player,nick,song,title,artist,chosen,score FROM roundparticipation NATURAL JOIN players NATURAL JOIN scores NATURAL LEFT JOIN songs WHERE " + // note: this _will_ break if any song has more than one short title! + pqxx::result res( t.exec("SELECT round,parallel,position,playmode,difficulty,songnumber,player,nick,song,title,COALESCE(shorttitle,title) AS shorttitle,artist,chosen,score FROM roundparticipation NATURAL JOIN players NATURAL JOIN scores NATURAL LEFT JOIN songs NATURAL LEFT JOIN songshorttitles WHERE " "tournament=" + pqxx::to_string(tournament) + " AND " + "round=" + pqxx::to_string(round) + " AND " + "parallel=" + pqxx::to_string(parallel) + " " + @@ -35,14 +36,25 @@ void FetchGroup::operator() (pqxx::transaction<> &t) Score sc; Song so; - so.id = i["song"].as(so.id); - so.title = i["song"].as(so.title); - so.artist = i["song"].as(so.artist); + if (i["song"].is_null()) { + so.id = -1; + } else { + so.id = i["song"].as(so.id); + so.title = i["title"].as(so.title); + so.artist = i["artist"].as(so.artist); + so.short_title = i["shorttitle"].as(so.short_title); + } sc.song = so; sc.chosen = i["chosen"].as(sc.chosen); - sc.score = i["score"].as(sc.score); - + + if (i["score"].is_null()) { + sc.score = -1; + } else { + sc.score = i["score"].as(sc.score); + curr_group.players[curr_group.players.size() - 1].total += sc.score; + } + curr_group.players[curr_group.players.size() - 1].scores.push_back(sc); } }