SA-MP Forums Archive
[Include] s3File - s3riously INI file system (Write/Read) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+---- Forum: Includes (https://sampforum.blast.hk/forumdisplay.php?fid=83)
+---- Thread: [Include] s3File - s3riously INI file system (Write/Read) (/showthread.php?tid=321595)

Pages: 1 2


s3File - s3riously INI file system (Write/Read) - s3rious - 27.02.2012

s3File - File Reading & Writing


After long time i want to start publish my script's. As first i will show my simple ini system s3File. I know exist much better file system, but is good if you will present yourself.

Version 1.2 changelog:
Код:
token s3 changed to INI - for easier write
improved create function - tnx ******
Version 1.4 changelog:
Код:
optimized code
added functions:
- GetFile
- SetFile
- WriteHex
- ReadHex
Rebuilded Close & Load Function
Bool is written as True or False (not 0/1)
Foreword
This ini system was compared with dini. Result - s3File is 5 times faster than dini. Why? Because s3File will write values only one time. Load file -> write(or)read -> Close file. Predefined function for writing and reading has assigned file in global variable and handle with them until the script does not call Close function.

Writing
pawn Код:
INI_Load("myini.ini");
INI_Write("NAME", "s3rious");
INI_WriteInt("TEAM", 0);
INI_Close();
- In this part of code s3File will load myini.ini file and set key "NAME" to value "s3rious". You can see, that isn't any variable for new file. INI_Write function will handle with file, was loaded by INI_Load("myini.ini");.

Reading
pawn Код:
INI_Load("myini.ini");
varA = INI_ReadInt("a");
varB = INI_ReadFloat("b");
INI_Close();
- This code is like above, but method is GET. This function, s3File will load file and read value of key "a". After success action script store value of readed key to variable varA. In the end will close file.

Be careful. When you load file make sure if called file exist. For create file you must use INI_Create("file.ini"); function. (with own name of file)

Download:
Version 1.1: http://pastebin.com/MYK5SXmH
Version 1.2: http://pastebin.com/pXd3qZr2
Version 1.4: http://pastebin.com/vJ7andKd
Version 1.5: http://pastebin.com/S7eQb1Sy


Re: s3File - s3riously INI file system (Write/Read) - WoodPecker - 27.02.2012

I think this one is same as y_ini or what? anyway nice release.


Re: s3File - s3riously INI file system (Write/Read) - s3rious - 27.02.2012

like y_ini? absulutely no


Re: s3File - s3riously INI file system (Write/Read) - System64 - 27.02.2012

pawn Код:
stock s3_Create(file[])
{
    new
           File:FCreate = fopen(file, io_write)
        ;
        return fclose(FCreate);
}
u mad bro?

not good, but okay


Re: s3File - s3riously INI file system (Write/Read) - s3rious - 27.02.2012

Quote:
Originally Posted by System64
Посмотреть сообщение
pawn Код:
stock s3_Create(file[])
{
    new
           File:FCreate = fopen(file, io_write)
        ;
        return fclose(FCreate);
}
u mad bro?

not good, but okay
why ?


Re: s3File - s3riously INI file system (Write/Read) - FireCat - 27.02.2012

Quote:
Originally Posted by System64
Посмотреть сообщение
pawn Код:
stock s3_Create(file[])
{
    new
           File:FCreate = fopen(file, io_write)
        ;
        return fclose(FCreate);
}
u mad bro?

not good, but okay
Yes, dafuq's wrong with it?


Re: s3File - s3riously INI file system (Write/Read) - System64 - 27.02.2012

nothing, my fault :/

Just take a look on y_ini script and this... but anyway, I appreciate your work


Re: s3File - s3riously INI file system (Write/Read) - TheArcher - 27.02.2012

I guess this is slow.


Re: s3File - s3riously INI file system (Write/Read) - -Prodigy- - 27.02.2012

Horrible way to name your functions! What's wrong with "INI"?


Re: s3File - s3riously INI file system (Write/Read) - s3rious - 27.02.2012

Quote:
Originally Posted by -Prodigy-
Посмотреть сообщение
Horrible way to name your functions! What's wrong with "INI"?
yeah i was thinking about this problem. sure may i'll change it


Re: s3File - s3riously INI file system (Write/Read) - Madd Kat - 27.02.2012

what the speed difference against Y_ini?
what makes this better and why would one move to this over y_ini?

these are questions people will want to know before even trying this.


Respuesta: s3File - s3riously INI file system (Write/Read) - [Nikk] - 27.02.2012

Is nice, good work !


Re: s3File - s3riously INI file system (Write/Read) - s3rious - 27.02.2012

Quote:
Originally Posted by Madd Kat
Посмотреть сообщение
what the speed difference against Y_ini?
what makes this better and why would one move to this over y_ini?

these are questions people will want to know before even trying this.
I didn't told that you move to this over y_ini. If you would better read you see the message "I know exist much better file system, but is good if you will present yourself."


Quote:
Originally Posted by [Nikk]
Посмотреть сообщение
Is nice, good work !
Thank you man ,..


Re: s3File - s3riously INI file system (Write/Read) - DonWade - 27.02.2012

+Rep


Re: s3File - s3riously INI file system (Write/Read) - Madd Kat - 27.02.2012

Quote:
Originally Posted by s3rious
Посмотреть сообщение
I didn't told that you move to this over y_ini. If you would better read you see the message "I know exist much better file system, but is good if you will present yourself."
yes i understand

well +rep just for giving something to the community!



Re: s3File - s3riously INI file system (Write/Read) - Walsh - 27.02.2012

I appreciate your work on this. However, if you look at it in a real perspective I doubt a lot of people will switch to this, but really. Goodjob man. Kudos


Re: s3File - s3riously INI file system (Write/Read) - s3rious - 28.02.2012

Thank you guys for you support i will go to get better


Re: s3File - s3riously INI file system (Write/Read) - CaHbKo - 28.02.2012

pawn Код:
stock s3_Create(file[])
{
    new
           File:FCreate = fopen(file, io_write)
        ;
        return fclose(FCreate);
}
pawn Код:
stock s3_Create(file[])
{
        return fclose(fopen(file, io_write));        
}



Re: s3File - s3riously INI file system (Write/Read) - trapped1 - 28.02.2012

Good work keep up the good work and try to make it faster. Anyway good work..


Re: s3File - s3riously INI file system (Write/Read) - Shadow_ - 28.02.2012

You can't write/read strings??