搜索
查看: 5165|回复: 8

mapsmenu插件管理员最多一次性同时发出4张地图投票

[复制链接]
发表于 2009-8-7 10:18:13 | 显示全部楼层 |阅读模式 来自 广东深圳
本帖最后由 Zero0senven 于 2009-9-6 14:42 编辑

mapsmenu插件管理员最多一次性同时发出4张地图投票,改成如何改成同事发出5张地图选择...
代码如下:

#include <amxmodx>
#include <amxmisc>

#define MAX_MAPS 64

new g_mapName[MAX_MAPS][32]
new g_mapNums
new g_menuPosition[33]

new g_voteCount[5]

new g_voteSelected[33][4]
new g_voteSelectedNum[33]

new g_coloredMenus

new g_choosed

public plugin_init()
{
        register_plugin("Maps Menu", AMXX_VERSION_STR, "AMXX Dev Team")
        register_dictionary("mapsmenu.txt")
        register_dictionary("common.txt")
        register_clcmd("amx_mapmenu", "cmdMapsMenu", ADMIN_MAP, "- displays changelevel menu")
        register_clcmd("amx_votemapmenu", "cmdVoteMapMenu", ADMIN_VOTE, "- displays votemap menu")

        register_menucmd(register_menuid("Changelevel Menu"), 1023, "actionMapsMenu")
        register_menucmd(register_menuid("Which map do you want?"), 527, "voteCount")
        register_menucmd(register_menuid("Change map to"), 527, "voteCount")
        register_menucmd(register_menuid("Votemap Menu"), 1023, "actionVoteMapMenu")
        register_menucmd(register_menuid("The winner: "), 3, "actionResult")

        new maps_ini_file[64];
        get_configsdir(maps_ini_file, 63);
        format(maps_ini_file, 63, "%s/maps.ini", maps_ini_file);

        if (!file_exists(maps_ini_file))
                format(maps_ini_file, 63, "mapcycle.txt")
        
        load_settings(maps_ini_file)

        g_coloredMenus = colored_menus()
}

public autoRefuse()
{
        log_amx("Vote: %L", "en", "RESULT_REF")
        client_print(0, print_chat, "%L", LANG_PLAYER, "RESULT_REF")
}

public actionResult(id, key)
{
        remove_task(4545454)
        
        switch (key)
        {
                case 0:
                {
                        new _modName[10]
                        get_modname(_modName, 9)
                        
                        if (!equal(_modName, "zp"))
                        {
                                message_begin(MSG_ALL, SVC_INTERMISSION)
                                message_end()
                        }

                        set_task(2.0, "delayedChange", 0, g_mapName[g_choosed], strlen(g_mapName[g_choosed]) + 1)
                        log_amx("Vote: %L", "en", "RESULT_ACC")
                        client_print(0, print_chat, "%L", LANG_PLAYER, "RESULT_ACC")
                }
                case 1: autoRefuse()
        }
        
        return PLUGIN_HANDLED
}

public checkVotes(id)
{
        id -= 34567
        new num, ppl[32], a = 0
        
        get_players(ppl, num, "c")
        if (num == 0) num = 1
        g_choosed = -1
        
        for (new i = 0; i < g_voteSelectedNum[id]; ++i)
                if (g_voteCount[a] < g_voteCount)
                        a = i

        new votesNum = g_voteCount[0] + g_voteCount[1] + g_voteCount[2] + g_voteCount[3] + g_voteCount[4]
        new iRatio = votesNum ? floatround(get_cvar_float("amx_votemap_ratio") * float(votesNum), floatround_ceil) : 1
        new iResult = g_voteCount[a]

        if (iResult >= iRatio)
        {
                g_choosed = g_voteSelected[id][a]
                client_print(0, print_chat, "%L %s", LANG_PLAYER, "VOTE_SUCCESS", g_mapName[g_choosed])
                log_amx("Vote: %L %s", "en", "VOTE_SUCCESS", g_mapName[g_choosed])
        }
        
        if (g_choosed != -1)
        {
                if (is_user_connected(id))
                {
                        new menuBody[512]
                        new len = format(menuBody, 511, g_coloredMenus ? "\y%L: \w%s^n^n" : "%L: %s^n^n", id, "THE_WINNER", g_mapName[g_choosed])
                        
                        len += format(menuBody[len], 511 - len, g_coloredMenus ? "\y%L^n\w" : "%L^n", id, "WANT_CONT")
                        format(menuBody[len], 511-len, "^n1. %L^n2. %L", id, "YES", id, "NO")

                        show_menu(id, 0x03, menuBody, 10, "The winner: ")
                        set_task(10.0, "autoRefuse", 4545454)
                } else {
                        new _modName[10]
                        get_modname(_modName, 9)
                        
                        if (!equal(_modName, "zp"))
                        {
                                message_begin(MSG_ALL, SVC_INTERMISSION)
                                message_end()
                        }
                        
                        set_task(2.0, "delayedChange", 0, g_mapName[g_choosed], strlen(g_mapName[g_choosed]) + 1)
                }
        } else {
                client_print(0, print_chat, "%L", LANG_PLAYER, "VOTE_FAILED")
                log_amx("Vote: %L", "en", "VOTE_FAILED")
        }
        
        remove_task(34567 + id)
}

public voteCount(id, key)
{
        if (key > 3)
        {
                client_print(0, print_chat, "%L", LANG_PLAYER, "VOT_CANC")
                remove_task(34567 + id)
                set_cvar_float("amx_last_voting", get_gametime())
                log_amx("Vote: Cancel vote session")
               
                return PLUGIN_HANDLED
        }
        
        if (get_cvar_float("amx_vote_answers"))
        {
                new name[32]
               
                get_user_name(id, name, 31)
                client_print(0, print_chat, "%L", LANG_PLAYER, "X_VOTED_FOR", name, key + 1)
        }
        
        ++g_voteCount[key]
        
        return PLUGIN_HANDLED
}

isMapSelected(id, pos)
{
        for (new a = 0; a < g_voteSelectedNum[id]; ++a)
                if (g_voteSelected[id][a] == pos)
                        return 1
        return 0
}
 楼主| 发表于 2009-8-7 10:19:16 | 显示全部楼层 来自 广东深圳
displayVoteMapsMenu(id, pos)
{
        if (pos < 0)
                return

        new menuBody[512], b = 0, start = pos * 7

        if (start >= g_mapNums)
                start = pos = g_menuPosition[id] = 0

        new len = format(menuBody, 511, g_coloredMenus ? "\y%L\R%d/%d^n\w^n" : "%L %d/%d^n^n", id, "VOTEMAP_MENU", pos + 1, (g_mapNums / 7 + ((g_mapNums % 7) ? 1 : 0)))
        new end = start + 7, keys = MENU_KEY_0

        if (end > g_mapNums)
                end = g_mapNums

        for (new a = start; a < end; ++a)
        {
                if (g_voteSelectedNum[id] == 4 || isMapSelected(id, pos * 7 + b))
                {
                        ++b
                        
                        if (g_coloredMenus)
                                len += format(menuBody[len], 511-len, "\d%d. %s^n\w", b, g_mapName[a])
                        else
                                len += format(menuBody[len], 511-len, "#. %s^n", g_mapName[a])
                } else {
                        keys |= (1<<b)
                        len += format(menuBody[len], 511-len, "%d. %s^n", ++b, g_mapName[a])
                }
        }

        if (g_voteSelectedNum[id])
        {
                keys |= MENU_KEY_8
                len += format(menuBody[len], 511-len, "^n8. %L^n", id, "START_VOT")
        }
        else
                len += format(menuBody[len], 511-len, g_coloredMenus ? "^n\d8. %L^n\w" : "^n#. %L^n", id, "START_VOT")

        if (end != g_mapNums)
        {
                len += format(menuBody[len], 511-len, "^n9. %L...^n0. %L^n", id, "MORE", id, pos ? "BACK" : "EXIT")
                keys |= MENU_KEY_9
        }
        else
                len += format(menuBody[len], 511-len, "^n0. %L^n", id, pos ? "BACK" : "EXIT")

        if (g_voteSelectedNum[id])
                len += format(menuBody[len], 511-len, g_coloredMenus ? "^n\y%L:^n\w" : "^n%L:^n", id, "SEL_MAPS")
        else
                len += format(menuBody[len], 511-len, "^n^n")

        for (new c = 0; c < 4; c++)
        {
                if (c < g_voteSelectedNum[id])
                        len += format(menuBody[len], 511-len, "%s^n", g_mapName[g_voteSelected[id][c]])
                else
                        len += format(menuBody[len], 511-len, "^n")
        }

        new menuName[64]
        format(menuName, 63, "%L", "en", "VOTEMAP_MENU")

        show_menu(id, keys, menuBody, -1, menuName)
}

public cmdVoteMapMenu(id, level, cid)
{
        if (!cmd_access(id, level, cid, 1))
                return PLUGIN_HANDLED

        if (get_cvar_float("amx_last_voting") > get_gametime())
        {
                client_print(id, print_chat, "%L", id, "ALREADY_VOT")
                return PLUGIN_HANDLED
        }

        g_voteSelectedNum[id] = 0

        if (g_mapNums)
        {
                displayVoteMapsMenu(id, g_menuPosition[id] = 0)
        } else {
                console_print(id, "%L", id, "NO_MAPS_MENU")
                client_print(id, print_chat, "%L", id, "NO_MAPS_MENU")
        }

        return PLUGIN_HANDLED
}

public cmdMapsMenu(id, level, cid)
{
        if (!cmd_access(id, level, cid, 1))
                return PLUGIN_HANDLED

        if (g_mapNums)
        {
                displayMapsMenu(id, g_menuPosition[id] = 0)
        } else {
                console_print(id, "%L", id, "NO_MAPS_MENU")
                client_print(id, print_chat, "%L", id, "NO_MAPS_MENU")
        }

        return PLUGIN_HANDLED
}

public delayedChange(mapname[])
        server_cmd("changelevel %s", mapname)

public actionVoteMapMenu(id, key)
{
        switch (key)
        {
                case 7:
                {
                        new Float:voting = get_cvar_float("amx_last_voting")
               
                        if (voting > get_gametime())
                        {
                                client_print(id, print_chat, "%L", id, "ALREADY_VOT")
                                return PLUGIN_HANDLED
                        }

                        if (voting && voting + get_cvar_float("amx_vote_delay") > get_gametime())
                        {
                                client_print(id, print_chat, "%L", id, "VOT_NOW_ALLOW")
                                return PLUGIN_HANDLED
                        }

                        g_voteCount = {0, 0, 0, 0, 0}
                        
                        new Float:vote_time = get_cvar_float("amx_vote_time") + 2.0
                        set_cvar_float("amx_last_voting", get_gametime() + vote_time)
                        new iVoteTime = floatround(vote_time)

                        set_task(vote_time, "checkVotes", 34567 + id)

                        new menuBody[512]
                        new players[32]
                        new pnum, keys, len

                        get_players(players, pnum)

                        if (g_voteSelectedNum[id] > 1)
                        {
                                len = format(menuBody, 511, g_coloredMenus ? "\y%L^n\w^n" : "%L^n^n", id, "WHICH_MAP")
                                
                                for (new c = 0; c < g_voteSelectedNum[id]; ++c)
                                {
                                        len += format(menuBody[len], 511, "%d. %s^n", c + 1, g_mapName[g_voteSelected[id][c]])
                                        keys |= (1<<c)
                                }
                                
                                keys |= (1<<8)
                                len += format(menuBody[len], 511, "^n9. %L^n", id, "NONE")
                        } else {
                                len = format(menuBody, 511, g_coloredMenus ? "\y%L^n%s?^n\w^n1. %L^n2. %L^n" : "%L^n%s?^n^n1. %L^n2. %L^n", id, "CHANGE_MAP_TO", g_mapName[g_voteSelected[id][0]], id, "YES", id, "NO")
                                keys = MENU_KEY_1|MENU_KEY_2
                        }

                        new menuName[64]
                        format(menuName, 63, "%L", "en", "WHICH_MAP")

                        for (new b = 0; b < pnum; ++b)
                                if (players[b] != id)
                                        show_menu(players[b], keys, menuBody, iVoteTime, menuName)

                        format(menuBody[len], 511, "^n0. %L", id, "CANC_VOTE")
                        keys |= MENU_KEY_0
                        show_menu(id, keys, menuBody, iVoteTime, menuName)

                        new authid[32], name[32]
                        
                        get_user_authid(id, authid, 31)
                        get_user_name(id, name, 31)

                        switch (get_cvar_num("amx_show_activity"))
                        {
                                case 2: client_print(0, print_chat, "%L", LANG_PLAYER, "ADMIN_V_MAP_2", name)
                                case 1: client_print(0, print_chat, "%L", LANG_PLAYER, "ADMIN_V_MAP_1")
                        }

                        log_amx("Vote: ^"%s<%d><%s><>^" vote maps (map#1 ^"%s^") (map#2 ^"%s^") (map#3 ^"%s^") (map#4 ^"%s^")",
                                        name, get_user_userid(id), authid,
                                        g_voteSelectedNum[id] > 0 ? g_mapName[g_voteSelected[id][0]] : "",
                                        g_voteSelectedNum[id] > 1 ? g_mapName[g_voteSelected[id][1]] : "",
                                        g_voteSelectedNum[id] > 2 ? g_mapName[g_voteSelected[id][2]] : "",
                                        g_voteSelectedNum[id] > 3 ? g_mapName[g_voteSelected[id][3]] : "")
                }
                case 8: displayVoteMapsMenu(id, ++g_menuPosition[id])
                case 9: displayVoteMapsMenu(id, --g_menuPosition[id])
                default:
                {
                        g_voteSelected[id][g_voteSelectedNum[id]++] = g_menuPosition[id] * 7 + key
                        displayVoteMapsMenu(id, g_menuPosition[id])
                }
        }

        return PLUGIN_HANDLED
}
回复

使用道具 举报

 楼主| 发表于 2009-8-7 10:20:20 | 显示全部楼层 来自 广东深圳
public actionMapsMenu(id, key)
{
        switch (key)
        {
                case 8: displayMapsMenu(id, ++g_menuPosition[id])
                case 9: displayMapsMenu(id, --g_menuPosition[id])
                default:
                {
                        new a = g_menuPosition[id] * 8 + key
                        new _modName[10]

                        get_modname(_modName, 9)
                        if (!equal(_modName, "zp"))
                        {
                                message_begin(MSG_ALL, SVC_INTERMISSION)
                                message_end()
                        }
                        
                        new authid[32], name[32]
                        
                        get_user_authid(id, authid, 31)
                        get_user_name(id, name, 31)

                        switch (get_cvar_num("amx_show_activity"))
                        {
                                case 2: client_print(0, print_chat, "%L", LANG_PLAYER, "ADMIN_CHANGEL_2", name, g_mapName[a])
                                case 1: client_print(0, print_chat, "%L", LANG_PLAYER, "ADMIN_CHANGEL_1", g_mapName[a])
                        }

                        log_amx("Cmd: ^"%s<%d><%s><>^" changelevel ^"%s^"", name, get_user_userid(id), authid, g_mapName[a])
                        set_task(2.0, "delayedChange", 0, g_mapName[a], strlen(g_mapName[a]) + 1)
                        /* displayMapsMenu(id, g_menuPosition[id]) */
                }
        }
        
        return PLUGIN_HANDLED
}

displayMapsMenu(id, pos)
{
        if (pos < 0)
                return

        new menuBody[512]
        new start = pos * 8
        new b = 0

        if (start >= g_mapNums)
                start = pos = g_menuPosition[id] = 0

        new len = format(menuBody, 511, g_coloredMenus ? "\y%L\R%d/%d^n\w^n" : "%L %d/%d^n^n", id, "CHANGLE_MENU", pos + 1, (g_mapNums / 8 + ((g_mapNums % 8) ? 1 : 0)))
        new end = start + 8
        new keys = MENU_KEY_0

        if (end > g_mapNums)
                end = g_mapNums

        for (new a = start; a < end; ++a)
        {
                keys |= (1<<b)
                len += format(menuBody[len], 511-len, "%d. %s^n", ++b, g_mapName[a])
        }

        if (end != g_mapNums)
        {
                format(menuBody[len], 511-len, "^n9. %L...^n0. %L", id, "MORE", id, pos ? "BACK" : "EXIT")
                keys |= MENU_KEY_9
        }
        else
                format(menuBody[len], 511-len, "^n0. %L", id, pos ? "BACK" : "EXIT")

        new menuName[64]
        format(menuName, 63, "%L", "en", "CHANGLE_MENU")

        show_menu(id, keys, menuBody, -1, menuName)
}

load_settings(filename[])
{
        if (!file_exists(filename))
                return 0

        new text[256]
        new a, pos = 0

        while (g_mapNums < MAX_MAPS && read_file(filename, pos++, text, 255, a))
        {
                if (text[0] == ';') continue
                if (parse(text, g_mapName[g_mapNums], 31) < 1) continue
                if (!is_map_valid(g_mapName[g_mapNums])) continue

                g_mapNums++
        }

        return 1
}
回复

使用道具 举报

 楼主| 发表于 2009-8-7 10:20:54 | 显示全部楼层 来自 广东深圳
个位大大辛苦...........
回复

使用道具 举报

发表于 2009-8-7 12:41:59 | 显示全部楼层 来自 福建漳州
没什么意义。投票的地图越多,投票越难通过。
回复

使用道具 举报

 楼主| 发表于 2009-8-7 16:24:45 | 显示全部楼层 来自 广东深圳
哦,源来时这样
回复

使用道具 举报

 楼主| 发表于 2009-8-7 16:26:26 | 显示全部楼层 来自 广东深圳
那如果要改应该怎么改,大大我都整了几天了,都失败....
回复

使用道具 举报

发表于 2009-8-9 19:22:52 | 显示全部楼层 来自 福建漳州
大概看了一下,有这几处要修改:
new g_voteSelected[33][4] 改成 new g_voteSelected[33][5]

527 改成 543 (有两处)

if (g_voteSelectedNum[id] == 4 || isMapSelected(id, pos * 7 + b))
改成
if (g_voteSelectedNum[id] == 5 || isMapSelected(id, pos * 7 + b))

for (new c = 0; c < 4; c++) 改成 for (new c = 0; c < 5; c++)
  1. log_amx("Vote: ^"%s<%d><%s><>^" vote maps (map#1 ^"%s^") (map#2 ^"%s^") (map#3 ^"%s^") (map#4 ^"%s^")",
  2. name, get_user_userid(id), authid,
  3. g_voteSelectedNum[id] > 0 ? g_mapName[g_voteSelected[id][0]] : "",
  4. g_voteSelectedNum[id] > 1 ? g_mapName[g_voteSelected[id][1]] : "",
  5. g_voteSelectedNum[id] > 2 ? g_mapName[g_voteSelected[id][2]] : "",
  6. g_voteSelectedNum[id] > 3 ? g_mapName[g_voteSelected[id][3]] : "")
复制代码
改成
  1. log_amx("Vote: ^"%s<%d><%s><>^" vote maps (map#1 ^"%s^") (map#2 ^"%s^") (map#3 ^"%s^")  (map#4 ^"%s^") (map#5 ^"%s^")",
  2. name, get_user_userid(id), authid,
  3. g_voteSelectedNum[id] > 0 ? g_mapName[g_voteSelected[id][0]] : "",
  4. g_voteSelectedNum[id] > 1 ? g_mapName[g_voteSelected[id][1]] : "",
  5. g_voteSelectedNum[id] > 2 ? g_mapName[g_voteSelected[id][2]] : "",
  6. g_voteSelectedNum[id] > 3 ? g_mapName[g_voteSelected[id][3]] : ""
  7. g_voteSelectedNum[id] > 4 ? g_mapName[g_voteSelected[id][4]] : "")
复制代码
if (key > 3) 改成 if (key > 4)

  
回复

使用道具 举报

发表于 2021-2-24 23:31:21 | 显示全部楼层 来自 江西南昌
唉发现自己问的真的很多
回复

使用道具 举报

游客
回复
您需要登录后才可以回帖 登录 | 注个册吧

快速回复 返回顶部 返回列表