This repository has been archived on 2023-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
NGC_HS1/ngc_hs1.h

117 lines
2.5 KiB
C
Raw Permalink Normal View History

2022-09-26 20:55:58 +02:00
#ifndef C_NGC_HS1_H
#define C_NGC_HS1_H
// this is a c header
//#include <stdbool.h>
//#include <stddef.h>
//#include <stdint.h>
#include <tox/tox.h>
2023-01-13 17:33:03 +01:00
#include "ngc_ext.h"
#include "ngc_ft1.h"
2022-10-03 01:15:49 +02:00
2022-09-26 20:55:58 +02:00
#ifdef __cplusplus
extern "C" {
#endif
// ========== struct / typedef ==========
typedef struct NGC_HS1 NGC_HS1;
struct NGC_HS1_options {
// (and up)
// 0 all
// 1 users
// 2 mods
// 3 founders
// 4 no one (above founder)
2022-09-29 02:39:54 +02:00
uint8_t default_trust_level /*= 2*/;
2022-09-26 20:55:58 +02:00
2022-09-30 02:04:25 +02:00
bool record_others;
2022-10-01 02:32:34 +02:00
float query_interval_per_peer; // 15.f
size_t last_msg_ids_count; // 5
2022-10-03 23:33:08 +02:00
float ft_activity_timeout; // seconds 60.f
2022-09-26 20:55:58 +02:00
};
// ========== init / kill ==========
// (see tox api)
2023-01-12 22:48:51 +01:00
NGC_HS1* NGC_HS1_new(const struct NGC_HS1_options* options);
bool NGC_HS1_register_ext(NGC_HS1* ngc_hs1_ctx, NGC_EXT_CTX* ngc_ext_ctx);
bool NGC_HS1_register_ft1(NGC_HS1* ngc_hs1_ctx, NGC_FT1* ngc_ft1_ctx);
//bool NGC_HS1_init(NGC_EXT_CTX* ngc_ext_ctx, const struct NGC_HS1_options* options);
void NGC_HS1_kill(NGC_HS1* ngc_hs1_ctx);
//void NGC_HS1_kill(NGC_EXT_CTX* ngc_ext_ctx);
2022-09-26 20:55:58 +02:00
// ========== iterate ==========
void NGC_HS1_iterate(Tox *tox, NGC_HS1* ngc_hs1_ctx);
//void NGC_HS1_iterate(Tox *tox, NGC_EXT_CTX* ngc_ext_ctx/*, void *user_data*/);
2022-09-26 20:55:58 +02:00
2022-09-30 02:04:25 +02:00
// ========== peer online/offline ==========
void NGC_HS1_peer_online(Tox* tox, NGC_HS1* ngc_hs1_ctx, uint32_t group_number, uint32_t peer_number, bool online);
2022-09-30 02:04:25 +02:00
2022-09-26 20:55:58 +02:00
// ========== send ==========
// shim (same interface)
// NGC_HS1_record_own_message()
bool NGC_HS1_shim_group_send_message(
const Tox *tox,
NGC_HS1* ngc_hs1_ctx,
2022-09-26 20:55:58 +02:00
uint32_t group_number,
Tox_Message_Type type, const uint8_t *message, size_t length,
uint32_t *message_id,
Tox_Err_Group_Send_Message *error
);
// record own msg
void NGC_HS1_record_own_message(
const Tox *tox,
NGC_HS1* ngc_hs1_ctx,
2022-09-26 20:55:58 +02:00
uint32_t group_number,
Tox_Message_Type type, const uint8_t *message, size_t length, uint32_t message_id
);
// ========== receive message ==========
2023-01-12 03:04:20 +01:00
typedef void NGC_HS1_group_message_cb(
Tox *tox,
uint32_t group_number,
uint32_t peer_id,
Tox_Message_Type type,
const uint8_t *message,
size_t length,
uint32_t message_id
);
// callback for when history sync has a new message
void NGC_HS1_register_callback_group_message(NGC_HS1* ngc_hs1_ctx, NGC_HS1_group_message_cb* callback); // TODO: userdata
2022-09-30 02:04:25 +02:00
// record others msg
void NGC_HS1_record_message(
const Tox *tox,
NGC_HS1* ngc_hs1_ctx,
2022-09-28 20:40:49 +02:00
2022-09-30 02:04:25 +02:00
uint32_t group_number,
uint32_t peer_number,
Tox_Message_Type type, const uint8_t *message, size_t length, uint32_t message_id
);
2022-09-26 20:55:58 +02:00
#ifdef __cplusplus
}
#endif
#endif // C_NGC_HS1_H