group_rank.go 5.33 KB
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4
package group_power_cv

import (
	"hilo-group/_const/enum/groupPower_e"
hujiebin's avatar
hujiebin committed
5
	"hilo-group/cv/user_cv"
hujiebin's avatar
hujiebin committed
6 7
)

hujiebin's avatar
hujiebin committed
8
// 家族信息
hujiebin's avatar
hujiebin committed
9
type CvGroupPowerInfo struct {
hujiebin's avatar
hujiebin committed
10 11
	CvGroupPowerBase   `json:",inline"`
	CvGroupPowerMember `json:",inline"`
hujiebin's avatar
hujiebin committed
12
	CvGroupPowerGrade  `json:",inline"`
hujiebin's avatar
hujiebin committed
13 14 15 16
}

// 家族基本信息
type CvGroupPowerBase struct {
17 18 19 20
	Id        uint64 `json:"id"`        // 家族id
	Icon      string `json:"icon"`      // 家族图片
	Name      string `json:"name"`      // 家族名
	Nameplate string `json:"nameplate"` // 铭牌
hujiebin's avatar
hujiebin committed
21 22
}

hujiebin's avatar
hujiebin committed
23 24
// 家族成员
type CvGroupPowerMember struct {
25 26
	MemberNum uint32 `json:"memberNum"` // 当前成员数
	MemberMax uint32 `json:"memberMax"` // 成员上限
hujiebin's avatar
hujiebin committed
27 28
}

hujiebin's avatar
hujiebin committed
29 30
// 家族等级
type CvGroupPowerGrade struct {
hujiebin's avatar
hujiebin committed
31
	Grade    groupPower_e.GroupPowerGrade `json:"grade"`              // 等级 0:青铜 1:白银 2:黄金 3:黑金
hujiebin's avatar
hujiebin committed
32
	Exp      uint32                       `json:"exp"`                // 经验值
hujiebin's avatar
hujiebin committed
33
	NextExp  uint32                       `json:"nextExp,omitempty"`  // 下个等级所需经验值
hujiebin's avatar
hujiebin committed
34 35 36
	ExpireAt string                       `json:"expireAt,omitempty"` // 有效期
}

hujiebin's avatar
hujiebin committed
37 38
// 家族榜单
type CvGroupPowerRank struct {
hujiebin's avatar
hujiebin committed
39 40
	MyGroupPower *CvGroupPowerRankData  `json:"myGroupPower,omitempty"` // 我的家族排名
	Items        []CvGroupPowerRankData `json:"items"`                  // 列表
hujiebin's avatar
hujiebin committed
41 42
}

hujiebin's avatar
hujiebin committed
43
type CvGroupPowerRankData struct {
hujiebin's avatar
hujiebin committed
44
	CvGroupPowerBase  `json:",inline"`
hujiebin's avatar
hujiebin committed
45 46
	CvGroupPowerGrade `json:",inline"`
	Rank              int `json:"rank"` // 排名
hujiebin's avatar
hujiebin committed
47 48
}

hujiebin's avatar
hujiebin committed
49 50
// 家族之星
type CvGroupPowerStarData struct {
hujiebin's avatar
hujiebin committed
51
	User  user_cv.CvUserTiny `json:"user"`
hujiebin's avatar
hujiebin committed
52
	Score uint32             `json:"score"` // 对应分值
hujiebin's avatar
hujiebin committed
53
}
hujiebin's avatar
hujiebin committed
54

55 56
// 资源等级
type CvResGrade struct {
hujiebin's avatar
hujiebin committed
57
	Grade groupPower_e.GroupPowerGrade `json:"grade"` // 等级
58 59
}

hujiebin's avatar
hujiebin committed
60 61 62 63
// 特权信息
type CvPrivilege struct {
	Type groupPower_e.GroupPowerPrivilege `json:"type"` // 特权id 1:成员数 2:管理员数 3:家族铭牌 4:家族徽章装饰 5:编辑铭牌 6:家族头饰
	Num  int                              `json:"num"`  // 数目
hujiebin's avatar
hujiebin committed
64
	Icon string                           `json:"icon"` // 图标
hujiebin's avatar
hujiebin committed
65 66 67 68
}

// 家族等级页
type CvGroupPowerGradeDetail struct {
hujiebin's avatar
hujiebin committed
69
	GroupPowerBase  CvGroupPowerBase  `json:"groupPowerBase"`  // 家族基本信息
hujiebin's avatar
hujiebin committed
70
	GroupPowerGrade CvGroupPowerGrade `json:"groupPowerGrade"` // 家族等级信息
71
	ResGradeList    []CvResGrade      `json:"resGradeList"`    // 资源等级列表,青铜、白银、黄金、黑金
hujiebin's avatar
hujiebin committed
72
	PrivilegeList   []CvPrivilege     `json:"privilegeList"`   // 等级特权
hujiebin's avatar
hujiebin committed
73
	IsMember        bool              `json:"isMember"`        // 是否家族成员
hujiebin's avatar
hujiebin committed
74 75
}

76
var CvResGradeList = []CvResGrade{
hujiebin's avatar
hujiebin committed
77 78 79 80
	{groupPower_e.GroupPowerGrade0},
	{groupPower_e.GroupPowerGrade1},
	{groupPower_e.GroupPowerGrade2},
	{groupPower_e.GroupPowerGrade3},
81 82
}

hujiebin's avatar
hujiebin committed
83
var GroupPowerGradePrivilegeNum = map[groupPower_e.GroupPowerGrade][]CvPrivilege{
hujiebin's avatar
hujiebin committed
84
	groupPower_e.GroupPowerGrade0: {
hujiebin's avatar
hujiebin committed
85 86 87 88
		{groupPower_e.GroupPowerPrivilegeMemberNum, 300, "https://image.whoisamy.shop/hilo/resource/family/users.png"},
		{groupPower_e.GroupPowerPrivilegeMgrNum, 10, "https://image.whoisamy.shop/hilo/resource/family/gl_user.png"},
		{groupPower_e.GroupPowerPrivilegeNameplate, 1, "https://image.whoisamy.shop/hilo/resource/family/nameplate_black.png"},
		{groupPower_e.GroupPowerPrivilegeMedal, 1, "https://image.whoisamy.shop/hilo/resource/family/privilege_black.png"},
hujiebin's avatar
hujiebin committed
89
	},
hujiebin's avatar
hujiebin committed
90
	groupPower_e.GroupPowerGrade1: {
hujiebin's avatar
hujiebin committed
91 92 93 94 95
		{groupPower_e.GroupPowerPrivilegeMemberNum, 500, "https://image.whoisamy.shop/hilo/resource/family/users.png"},
		{groupPower_e.GroupPowerPrivilegeMgrNum, 15, "https://image.whoisamy.shop/hilo/resource/family/gl_user.png"},
		{groupPower_e.GroupPowerPrivilegeNameplate, 1, "https://image.whoisamy.shop/hilo/resource/family/nameplate_cyan.png"},
		{groupPower_e.GroupPowerPrivilegeMedal, 1, "https://image.whoisamy.shop/hilo/resource/family/privilege_cyan.png"},
		{groupPower_e.GroupPowerPrivilegeNameplateEdit, 1, "https://image.whoisamy.shop/hilo/resource/family/edit_cyan.png"},
hujiebin's avatar
hujiebin committed
96
	},
hujiebin's avatar
hujiebin committed
97
	groupPower_e.GroupPowerGrade2: {
hujiebin's avatar
hujiebin committed
98 99 100 101 102 103
		{groupPower_e.GroupPowerPrivilegeMemberNum, 800, "https://image.whoisamy.shop/hilo/resource/family/users.png"},
		{groupPower_e.GroupPowerPrivilegeMgrNum, 20, "https://image.whoisamy.shop/hilo/resource/family/gl_user.png"},
		{groupPower_e.GroupPowerPrivilegeNameplate, 1, "https://image.whoisamy.shop/hilo/resource/family/nameplate_white.png"},
		{groupPower_e.GroupPowerPrivilegeMedal, 1, "https://image.whoisamy.shop/hilo/resource/family/privilege_white.png"},
		{groupPower_e.GroupPowerPrivilegeNameplateEdit, 1, "https://image.whoisamy.shop/hilo/resource/family/edit_white.png"},
		{groupPower_e.GroupPowerPrivilegeNameplateHeadwear, 1, "https://image.whoisamy.shop/hilo/resource/family/headwear_white.png"},
hujiebin's avatar
hujiebin committed
104
	},
hujiebin's avatar
hujiebin committed
105
	groupPower_e.GroupPowerGrade3: {
hujiebin's avatar
hujiebin committed
106 107 108 109 110 111
		{groupPower_e.GroupPowerPrivilegeMemberNum, 1200, "https://image.whoisamy.shop/hilo/resource/family/users.png"},
		{groupPower_e.GroupPowerPrivilegeMgrNum, 25, "https://image.whoisamy.shop/hilo/resource/family/gl_user.png"},
		{groupPower_e.GroupPowerPrivilegeNameplate, 1, "https://image.whoisamy.shop/hilo/resource/family/nameplate_yellow.png"},
		{groupPower_e.GroupPowerPrivilegeMedal, 1, "https://image.whoisamy.shop/hilo/resource/family/privilege_yellow.png"},
		{groupPower_e.GroupPowerPrivilegeNameplateEdit, 1, "https://image.whoisamy.shop/hilo/resource/family/edit_yellow.png"},
		{groupPower_e.GroupPowerPrivilegeNameplateHeadwear, 1,"https://image.whoisamy.shop/hilo/resource/family/headwear_yellow.png"},
hujiebin's avatar
hujiebin committed
112 113
	},
}