Raised This Month: $ Target: $400
 0% 

[SNIPPET] Maplist Generator


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
headline
SourceMod Moderator
Join Date: Mar 2015
Old 12-03-2016 , 00:47   [SNIPPET] Maplist Generator
Reply With Quote #1

Hey. I had to copy ~300 map names from my map directory and instead of doing it manually I threw this plugin together in order to do it for me. Thought I'd share

Don't keep this in your server if you don't need it to be. It'll just eat up resources...
PHP Code:
/* This plugin assumes you want the maplist.txt to be OVERWRITTEN *
 * Made by Headline & SWAT_88                                       */

#include <sourcemod>

#pragma newdecls required
#pragma semicolon 1

ArrayList files null;

public 
void OnPluginStart()
{
    
files = new ArrayList(PLATFORM_MAX_PATH);
    
    
ReadFileFolder("maps");
    
    
File newFile OpenFile("maplist.txt""w");
    
    
char tempString[PLATFORM_MAX_PATH];

    for (
int i 0files.Lengthi++)
    {
        
files.GetString(itempStringsizeof(tempString));
        
newFile.WriteLine(tempString);
    }
    
    
newFile.Close();
}

/* Snippet from SWAT_88 */
public void ReadFileFolder(char[] path)
{
    
Handle dirh null;
    
char buffer[256];
    
char tmp_path[256];
    
FileType type FileType_Unknown;
    
int len;
    
    
len strlen(path);
    if (
path[len-1] == '\n')
        
path[--len] = '\0';

    
TrimString(path);
    
    if(
DirExists(path))
    {
        
dirh OpenDirectory(path);
        
        while(
ReadDirEntry(dirhbuffersizeof(buffer), type))
        {
            
len strlen(buffer);
            if (
buffer[len-1] == '\n')
                
buffer[--len] = '\0';

            
TrimString(buffer);

            if (!
StrEqual(buffer,"",false) && !StrEqual(buffer,".",false) && !StrEqual(buffer,"..",false))
            {
                
strcopy(tmp_path,255,path);
                
StrCat(tmp_path,255"/");
                
StrCat(tmp_path,255buffer);
                if(
type == FileType_File)
                {
                    if (
StrContains(tmp_path".bsp") != -1)
                    {
                        
ReplaceString(tmp_path255".bsp""");
                        
ReplaceString(tmp_path255"maps/""");
                        
files.PushString(tmp_path);
                    }
                }
            }
        }
    }
    else
    {
        
SetFailState("[Log Cleaner] No log folder found!");
    }
    
    if(
dirh != null)
    {
        
CloseHandle(dirh);
    }


Last edited by headline; 12-03-2016 at 00:50.
headline is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:56.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode