ICHITAKA SETO 发表于 2008-7-8 17:40:11

由低学起..向R版主请教改颜色问题

/* AMX Mod X
*   Maps Menu Plugin
*
* by the AMX Mod X Development Team
*originally developed by OLO
*
* This file is part of AMX Mod X.
*
*
*This program is free software; you can redistribute it and/or modify it
*under the terms of the GNU General Public License as published by the
*Free Software Foundation; either version 2 of the License, or (at
*your option) any later version.
*
*This program is distributed in the hope that it will be useful, but
*WITHOUT ANY WARRANTY; without even the implied warranty of
*MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*General Public License for more details.
*
*You should have received a copy of the GNU General Public License
*along with this program; if not, write to the Free Software Foundation,
*Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*In addition, as a special exception, the author gives permission to
*link the code of this program with the Half-Life Game Engine ("HL
*Engine") and Modified Game Libraries ("MODs") developed by Valve,
*L.L.C ("Valve"). You must obey the GNU General Public License in all
*respects for all of the code used other than the HL Engine and MODs
*from Valve. If you modify this file, you may extend this exception
*to your version of the file, but you are not obligated to do so. If
*you do not wish to do so, delete this exception statement from your
*version.
*/

#include <amxmodx>
#include <amxmisc>

new Array:g_mapName;
new g_mapNums
new g_menuPosition

new g_voteCount

new g_voteSelected
new g_voteSelectedNum

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")

        g_mapName=ArrayCreate(32);
       
        new maps_ini_file;
        get_configsdir(maps_ini_file, 63);
        format(maps_ini_file, 63, "%s/maps.ini", maps_ini_file);

        if (!file_exists(maps_ini_file))
                get_cvar_string("mapcyclefile", maps_ini_file, sizeof(maps_ini_file) - 1);
               
        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
                        get_modname(_modName, 9)
                       
                        if (!equal(_modName, "zp"))
                        {
                                message_begin(MSG_ALL, SVC_INTERMISSION)
                                message_end()
                        }

                        new tempMap;
                        ArrayGetString(g_mapName, g_choosed, tempMap, charsmax(tempMap));
                       
                        set_task(2.0, "delayedChange", 0, tempMap, strlen(tempMap) + 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, a = 0
       
        get_players(ppl, num, "c")
        if (num == 0) num = 1
        g_choosed = -1
       
        for (new i = 0; i < g_voteSelectedNum; ++i)
                if (g_voteCount < g_voteCount)
                        a = i

        new votesNum = g_voteCount + g_voteCount + g_voteCount + g_voteCount + g_voteCount
        new iRatio = votesNum ? floatround(get_cvar_float("amx_votemap_ratio") * float(votesNum), floatround_ceil) : 1
        new iResult = g_voteCount

        if (iResult >= iRatio)
        {
                g_choosed = g_voteSelected
                new tempMap;
                ArrayGetString(g_mapName, g_choosed, tempMap, charsmax(tempMap));
                client_print(0, print_chat, "%L %s", LANG_PLAYER, "VOTE_SUCCESS", tempMap);
                log_amx("Vote: %L %s", "en", "VOTE_SUCCESS", tempMap);
        }
       
        if (g_choosed != -1)
        {
                if (is_user_connected(id))
                {
                        new menuBody
                        new tempMap;
                        ArrayGetString(g_mapName, g_choosed, tempMap, charsmax(tempMap));
                        new len = format(menuBody, 511, g_coloredMenus ? "\y%L: \w%s^n^n" : "%L: %s^n^n", id, "THE_WINNER", tempMap)
                       
                        len += format(menuBody, 511 - len, g_coloredMenus ? "\y%L^n\w" : "%L^n", id, "WANT_CONT")
                        format(menuBody, 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
                        get_modname(_modName, 9)
                       
                        if (!equal(_modName, "zp"))
                        {
                                message_begin(MSG_ALL, SVC_INTERMISSION)
                                message_end()
                        }
                        new tempMap;
                        ArrayGetString(g_mapName, g_choosed, tempMap, charsmax(tempMap));
                        set_task(2.0, "delayedChange", 0, tempMap, strlen(tempMap) + 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
               
                get_user_name(id, name, 31)
                client_print(0, print_chat, "%L", LANG_PLAYER, "X_VOTED_FOR", name, key + 1)
        }
       
        ++g_voteCount
       
        return PLUGIN_HANDLED
}

isMapSelected(id, pos)
{
        for (new a = 0; a < g_voteSelectedNum; ++a)
                if (g_voteSelected == pos)
                        return 1
        return 0
}

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

        new menuBody, b = 0, start = pos * 7

        if (start >= g_mapNums)
                start = pos = g_menuPosition = 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

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

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

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

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

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

        new menuName
        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 = 0

        if (g_mapNums)
        {
                displayVoteMapsMenu(id, g_menuPosition = 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 = 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)
{
        new tempMap;
        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
                        new players
                        new pnum, keys, len

                        get_players(players, pnum)

                        if (g_voteSelectedNum > 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; ++c)
                                {
                                        ArrayGetString(g_mapName, g_voteSelected, tempMap, charsmax(tempMap));
                                        len += format(menuBody, 511, "%d. %s^n", c + 1, tempMap)
                                        keys |= (1<<c)
                                }
                               
                                keys |= (1<<8)
                                len += format(menuBody, 511, "^n9. %L^n", id, "NONE")
                        } else {
                                ArrayGetString(g_mapName, g_voteSelected, tempMap, charsmax(tempMap));
                                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", tempMap, id, "YES", id, "NO")
                                keys = MENU_KEY_1|MENU_KEY_2
                        }

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

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

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

                        new authid, name
                       
                        get_user_authid(id, authid, 31)
                        get_user_name(id, name, 31)

                        show_activity_key("ADMIN_V_MAP_1", "ADMIN_V_MAP_2", name);

                        new tempMapA;
                        new tempMapB;
                        new tempMapC;
                        new tempMapD;
                        if (g_voteSelectedNum > 0)
                        {
                                ArrayGetString(g_mapName, g_voteSelected, tempMapA, charsmax(tempMapA));
                        }
                        else
                        {
                                copy(tempMapA, charsmax(tempMapA), "");
                        }
                        if (g_voteSelectedNum > 1)
                        {
                                ArrayGetString(g_mapName, g_voteSelected, tempMapB, charsmax(tempMapB));
                        }
                        else
                        {
                                copy(tempMapB, charsmax(tempMapB), "");
                        }
                        if (g_voteSelectedNum > 2)
                        {
                                ArrayGetString(g_mapName, g_voteSelected, tempMapC, charsmax(tempMapC));
                        }
                        else
                        {
                                copy(tempMapC, charsmax(tempMapC), "");
                        }
                        if (g_voteSelectedNum > 3)
                        {
                                ArrayGetString(g_mapName, g_voteSelected, tempMapD, charsmax(tempMapD));
                        }
                        else
                        {
                                copy(tempMapD, charsmax(tempMapD), "");
                        }
                       
                        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,
                                        tempMapA, tempMapB, tempMapC, tempMapD)
                }
                case 8: displayVoteMapsMenu(id, ++g_menuPosition)
                case 9: displayVoteMapsMenu(id, --g_menuPosition)
                default:
                {
                        g_voteSelected++] = g_menuPosition * 7 + key
                        displayVoteMapsMenu(id, g_menuPosition)
                }
        }

        return PLUGIN_HANDLED
}

public actionMapsMenu(id, key)
{
        switch (key)
        {
                case 8: displayMapsMenu(id, ++g_menuPosition)
                case 9: displayMapsMenu(id, --g_menuPosition)
                default:
                {
                        new a = g_menuPosition * 8 + key
                        new _modName

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

                        new tempMap;
                        ArrayGetString(g_mapName, a, tempMap, charsmax(tempMap));
                       
                        show_activity_key("ADMIN_CHANGEL_1", "ADMIN_CHANGEL_2", name, tempMap);

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

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

        new menuBody
        new tempMap
        new start = pos * 8
        new b = 0

        if (start >= g_mapNums)
                start = pos = g_menuPosition = 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)
                ArrayGetString(g_mapName, a, tempMap, charsmax(tempMap));
                len += format(menuBody, 511-len, "%d. %s^n", ++b, tempMap)
        }

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

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

        show_menu(id, keys, menuBody, -1, menuName)
}
stock bool:ValidMap(mapname[])
{
        if ( is_map_valid(mapname) )
        {
                return true;
        }
        // If the is_map_valid check failed, check the end of the string
        new len = strlen(mapname) - 4;
       
        // The mapname was too short to possibly house the .bsp extension
        if (len < 0)
        {
                return false;
        }
        if ( equali(mapname, ".bsp") )
        {
                // If the ending was .bsp, then cut it off.
                // the string is byref'ed, so this copies back to the loaded text.
                mapname = '^0';
               
                // recheck
                if ( is_map_valid(mapname) )
                {
                        return true;
                }
        }
       
        return false;
}

load_settings(filename[])
{
        new fp = fopen(filename, "r");
       
        if (!fp)
        {
                return 0;
        }
               

        new text;
        new tempMap;
       
        while (!feof(fp))
        {
                fgets(fp, text, charsmax(text));
               
                if (text == ';')
                {
                        continue;
                }
                if (parse(text, tempMap, charsmax(tempMap)) < 1)
                {
                        continue;
                }
                if (!ValidMap(tempMap))
                {
                        continue;
                }
               
                ArrayPushString(g_mapName, tempMap);
                g_mapNums++;
        }

        return 1;
}


我希望更改VOTEMAP_MENU 和 选择投票目标的1. 2. 3. 4. 5. 6. 7. 的文字颜色..或目标地图的颜色,麻烦版主教教我...也介绍一下那些颜色有多少可选:embarrass先谢谢版主

Rulzy 发表于 2008-7-8 18:56:14

回复: 由低学起..向R版主请教改颜色问题

在菜单内容里加上如下内容,即可改变颜色。
下面是常用的改变菜单文字颜色的代码:
\y - 变成黄色
\w - 变成白色
\d - 变成灰色
\r - 变成红色

一般都使用小写,如果使用大写,则会水平居中显示。

ttbs123 发表于 2008-7-9 11:52:42

回复: 由低学起..向R版主请教改颜色问题

不錯,學習到了,感謝Rulzy

ICHITAKA SETO 发表于 2008-7-17 15:47:16

回复: 由低学起..向R版主请教改颜色问题

感恩:super: :super:

ifubo 发表于 2008-7-17 21:10:44

回复: 由低学起..向R版主请教改颜色问题

谢谢版主
长见识了
在老友记好象看到,数字是一种颜色,后面的菜单内容又是一种颜色呢
先自己试试先

红毛小子 发表于 2008-8-9 17:16:28

回复: 由低学起..向R版主请教改颜色问题

原来是这样,谢谢!!!!!!!!!!
页: [1]
查看完整版本: 由低学起..向R版主请教改颜色问题