245 lines
6.3 KiB
C#
245 lines
6.3 KiB
C#
using PhxhSDK;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public partial class BIManager : Singlenton<BIManager>, IInitable
|
|
{
|
|
/// <summary>
|
|
/// 隐私协议同意标志
|
|
/// </summary>
|
|
public const int Agree_Privacy = 1;
|
|
|
|
#region 基础数据
|
|
/// <summary>
|
|
/// 授权时上报
|
|
/// </summary>
|
|
public const string app_privacy_permission = "app_privacy_permission";
|
|
|
|
/// <summary>
|
|
/// 开始请求app config时上报
|
|
/// </summary>
|
|
public const string app_config_request = "app_config_request";
|
|
|
|
/// <summary>
|
|
/// app config返回时上报
|
|
/// </summary>
|
|
public const string app_config_response = "app_config_response";
|
|
|
|
/// <summary>
|
|
/// 版本资源检测开始时上报
|
|
/// </summary>
|
|
public const string app_version_check = "app_version_check";
|
|
|
|
/// <summary>
|
|
/// 版本资源检测结束时上报
|
|
/// </summary>
|
|
public const string app_version_check_result = "app_version_check_result";
|
|
|
|
/// <summary>
|
|
/// 版本资源检测是否需要热更强更请求开始时上报
|
|
/// </summary>
|
|
public const string app_hotupdate_config_request = "app_hotupdate_config_request";
|
|
|
|
/// <summary>
|
|
/// 版本资源检测是否需要热更强更结束时上报
|
|
/// </summary>
|
|
public const string app_hotupdate_config_response = "app_hotupdate_config_response";
|
|
|
|
/// <summary>
|
|
/// 热更资源开始下载时上报
|
|
/// </summary>
|
|
public const string app_hotupdate_res_start = "app_hotupdate_res_start";
|
|
|
|
/// <summary>
|
|
/// 热更资源下载结束时上报
|
|
/// </summary>
|
|
public const string app_hotupdate_res_end = "app_hotupdate_res_end";
|
|
|
|
/// <summary>
|
|
/// 启动后loading开始时上报
|
|
/// </summary>
|
|
public const string preload_start = "preload_start";
|
|
|
|
/// <summary>
|
|
/// 启动加载进度更新时上报
|
|
/// </summary>
|
|
public const string preload_process = "preload_process";
|
|
|
|
/// <summary>
|
|
/// 启动后loading结束时上报
|
|
/// </summary>
|
|
public const string preload_end = "preload_end";
|
|
|
|
/// <summary>
|
|
/// 自动登录或手动登录时上报
|
|
/// </summary>
|
|
public const string login_check = "login_check";
|
|
|
|
/// <summary>
|
|
/// 验证码请求时上报
|
|
/// </summary>
|
|
public const string veri_code_request = "veri_code_request";
|
|
|
|
/// <summary>
|
|
/// 验证码发送成功时上报
|
|
/// </summary>
|
|
public const string veri_code_request_result = "veri_code_request_result";
|
|
|
|
/// <summary>
|
|
/// 登录点击时上报
|
|
/// </summary>
|
|
public const string login_request = "login_request";
|
|
|
|
/// <summary>
|
|
/// 登录成功进入服务器时上报
|
|
/// </summary>
|
|
public const string login_response = "login_response";
|
|
|
|
/// <summary>
|
|
/// 进入主场景loading开始时上报
|
|
/// </summary>
|
|
public const string enter_main_loading_start = "enter_main_loading_start";
|
|
|
|
/// <summary>
|
|
/// 进入主场景loading结束时上报
|
|
/// </summary>
|
|
public const string enter_main_loading_end = "enter_main_loading_end";
|
|
|
|
/// <summary>
|
|
/// 首次为账号角色起名成功后
|
|
/// </summary>
|
|
public const string role_name_create = "role_name_create";
|
|
|
|
/// <summary>
|
|
/// 账号升级成功后上报
|
|
/// </summary>
|
|
public const string role_level_up = "role_level_up";
|
|
|
|
/// <summary>
|
|
/// 通行证等级升级成功后上报
|
|
/// </summary>
|
|
public const string pass_level_up = "pass_level_up";
|
|
#endregion
|
|
|
|
#region 新手引导
|
|
/// <summary>
|
|
/// 开始/完成/跳过新手引导每一小阶段时记录
|
|
/// </summary>
|
|
public const string guide_complete_event = "guide_complete_event";
|
|
#endregion
|
|
|
|
#region 活动与任务
|
|
/// <summary>
|
|
/// 每日签到领取奖励后上报
|
|
/// </summary>
|
|
public const string daily_sign = "daily_sign";
|
|
|
|
/// <summary>
|
|
/// 达到任务完成条件时上报
|
|
/// </summary>
|
|
public const string task_complete = "task_complete";
|
|
|
|
/// <summary>
|
|
/// 点击领取时上报
|
|
/// </summary>
|
|
public const string task_award_get = "task_award_get";
|
|
#endregion
|
|
|
|
#region 关卡
|
|
/// <summary>
|
|
/// 关卡进入时上报
|
|
/// </summary>
|
|
public const string level_start_event = "level_start_event";
|
|
|
|
/// <summary>
|
|
/// 关卡结束后上报
|
|
/// </summary>
|
|
public const string level_end_event = "level_end_event";
|
|
|
|
|
|
/// <summary>
|
|
/// PVP结束后上报
|
|
/// </summary>
|
|
public const string exercise_start = "exercise_start";
|
|
/// <summary>
|
|
/// PVP结束后上报
|
|
/// </summary>
|
|
public const string exercise_report = "exercise_report";
|
|
|
|
#endregion
|
|
|
|
#region 养成打点
|
|
|
|
|
|
/// <summary>
|
|
/// 升级、进修、考核、好感度提升等上报
|
|
/// </summary>
|
|
public const string hero_up = "hero_up";
|
|
|
|
/// <summary>
|
|
/// 角色技能养成上报
|
|
/// </summary>
|
|
public const string hero_skill_up = "hero_skill_up";
|
|
|
|
/// <summary>
|
|
/// 载具研发上报
|
|
/// </summary>
|
|
public const string vehicle_up = "vehicle_up";
|
|
|
|
#endregion
|
|
|
|
|
|
#region 编队
|
|
/// <summary>
|
|
/// 编辑队伍信息保存上报
|
|
/// </summary>
|
|
public const string team_create = "team";
|
|
#endregion
|
|
|
|
#region 商城与支付
|
|
|
|
/// <summary>
|
|
/// 创建订单时上报
|
|
/// </summary>
|
|
public const string payment_init = "payment_init";
|
|
|
|
/// <summary>
|
|
/// 支付订单失败时上报
|
|
/// </summary>
|
|
public const string payment_fail = "payment_fail";
|
|
|
|
/// <summary>
|
|
/// 支付订单成功时上报
|
|
/// </summary>
|
|
public const string payment_success = "payment_success";
|
|
#endregion
|
|
|
|
#region 邮件
|
|
/// <summary>
|
|
/// 邮件查看后
|
|
/// </summary>
|
|
public const string mail_show = "mail_show";
|
|
#endregion
|
|
|
|
#region 商品
|
|
/// <summary>
|
|
/// 商品页面曝光
|
|
/// </summary>
|
|
public const string product_info_show = "product_info_show";
|
|
/// <summary>
|
|
/// 点击前往购买
|
|
/// </summary>
|
|
public const string click_to_purchase = "click_to_purchase";
|
|
/// <summary>
|
|
/// 支付页面曝光
|
|
/// </summary>
|
|
public const string payment_page_show = "payment_page_show";
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 抽卡
|
|
/// </summary>
|
|
public const string draw_card = "draw_card";
|
|
}
|