1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- -ifndef(SCORING_HRL).
- -define(SCORING_HRL, "scoring_hrl").
- -include_lib("kvs/include/kvs.hrl").
- -record(ti_game_event, {
- id :: integer(),
- type,
- game_name,
- game_mode,
- double_points,
- tournament_type = standalone }).
- -record(player_scoring, {
- ?ITERATOR(feed),
- temp,
- permanent,
-
-
- agregated_score
- }).
- -record(scoring_record, {
- ?ITERATOR(feed),
- game_id,
- who,
- all_players,
- game_type,
- game_kind,
- condition,
- score_points,
- score_kakaush,
- custom,
- timestamp
- }).
- -record(personal_score, {
- ?ITERATOR(feed),
- uid,
- games = 0,
- wins = 0,
- loses = 0,
- disconnects = 0,
- points = 0,
- average_time = 0
- }).
- -record(pointing_rule, {?ITERATOR(feed),
- pointing_rule_id,
- game,
- game_type,
- rounds,
- kakush_winner,
- kakush_other,
- quota,
- game_points}).
- -endif.
|