2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/DialogId.h"
|
|
|
|
#include "td/telegram/files/FileId.h"
|
|
|
|
#include "td/telegram/MessageEntity.h"
|
|
|
|
#include "td/telegram/Photo.h"
|
2021-09-18 23:47:05 +02:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/telegram/UserId.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2018-09-28 22:57:34 +02:00
|
|
|
#include "td/utils/Status.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2018-09-28 22:57:34 +02:00
|
|
|
class ContactsManager;
|
2018-12-31 20:04:05 +01:00
|
|
|
class Td;
|
|
|
|
|
|
|
|
class Game {
|
|
|
|
int64 id_ = 0;
|
|
|
|
int64 access_hash_ = 0;
|
|
|
|
UserId bot_user_id_;
|
|
|
|
string short_name_;
|
|
|
|
string title_;
|
|
|
|
string description_;
|
|
|
|
Photo photo_;
|
|
|
|
FileId animation_file_id_;
|
|
|
|
|
2018-01-30 18:06:54 +01:00
|
|
|
FormattedText text_;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
friend bool operator==(const Game &lhs, const Game &rhs);
|
|
|
|
friend bool operator!=(const Game &lhs, const Game &rhs);
|
|
|
|
|
|
|
|
friend StringBuilder &operator<<(StringBuilder &string_builder, const Game &game);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Game() = default;
|
|
|
|
|
2021-09-02 15:49:57 +02:00
|
|
|
Game(Td *td, UserId bot_user_id, tl_object_ptr<telegram_api::game> &&game, FormattedText text,
|
|
|
|
DialogId owner_dialog_id);
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2021-09-02 15:49:57 +02:00
|
|
|
// for inline results
|
2018-12-31 20:04:05 +01:00
|
|
|
Game(Td *td, string title, string description, tl_object_ptr<telegram_api::Photo> &&photo,
|
|
|
|
tl_object_ptr<telegram_api::Document> &&document, DialogId owner_dialog_id);
|
|
|
|
|
2021-09-02 15:49:57 +02:00
|
|
|
// for outgoing messages
|
2018-12-31 20:04:05 +01:00
|
|
|
Game(UserId bot_user_id, string short_name);
|
|
|
|
|
2021-09-02 15:35:56 +02:00
|
|
|
bool is_empty() const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
UserId get_bot_user_id() const;
|
|
|
|
|
2019-02-28 19:40:57 +01:00
|
|
|
vector<FileId> get_file_ids(const Td *td) const;
|
2019-01-06 00:15:07 +01:00
|
|
|
|
2018-09-28 01:16:49 +02:00
|
|
|
const FormattedText &get_text() const;
|
2018-04-02 01:03:22 +02:00
|
|
|
|
2021-07-22 04:39:16 +02:00
|
|
|
tl_object_ptr<td_api::game> get_game_object(Td *td, bool skip_bot_commands) const;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
2020-01-16 03:18:06 +01:00
|
|
|
bool has_input_media() const;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
tl_object_ptr<telegram_api::inputMediaGame> get_input_media_game(const Td *td) const;
|
|
|
|
|
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(const Game &lhs, const Game &rhs);
|
|
|
|
bool operator!=(const Game &lhs, const Game &rhs);
|
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &string_builder, const Game &game);
|
|
|
|
|
2018-09-28 22:57:34 +02:00
|
|
|
Result<Game> process_input_message_game(const ContactsManager *contacts_manager,
|
|
|
|
tl_object_ptr<td_api::InputMessageContent> &&input_message_content)
|
|
|
|
TD_WARN_UNUSED_RESULT;
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|