mirror of
https://github.com/WhatCD/Ocelot.git
synced 2026-01-16 19:05:03 -05:00
34 lines
939 B
C++
34 lines
939 B
C++
#ifndef USER_H
|
|
#define USER_H
|
|
|
|
#include <atomic>
|
|
#include "ocelot.h"
|
|
|
|
class user {
|
|
private:
|
|
userid_t id;
|
|
bool deleted;
|
|
bool leechstatus;
|
|
bool protect_ip;
|
|
struct {
|
|
std::atomic<uint32_t> leeching;
|
|
std::atomic<uint32_t> seeding;
|
|
} stats;
|
|
public:
|
|
user(userid_t uid, bool leech, bool protect);
|
|
userid_t get_id() { return id; }
|
|
bool is_deleted() { return deleted; }
|
|
void set_deleted(bool status) { deleted = status; }
|
|
bool is_protected() { return protect_ip; }
|
|
void set_protected(bool status) { protect_ip = status; }
|
|
bool can_leech() { return leechstatus; }
|
|
void set_leechstatus(bool status) { leechstatus = status; }
|
|
void decr_leeching() { --stats.leeching; }
|
|
void decr_seeding() { --stats.seeding; }
|
|
void incr_leeching() { ++stats.leeching; }
|
|
void incr_seeding() { ++stats.seeding; }
|
|
uint32_t get_leeching() { return stats.leeching; }
|
|
uint32_t get_seeding() { return stats.seeding; }
|
|
};
|
|
#endif
|