User contributions for The GTA
Jump to navigation
Jump to search
1 February 2014
- 19:0319:03, 1 February 2014 diff hist +49 MTA:Eir/FileSystem No edit summary
- 18:5818:58, 1 February 2014 diff hist −5 File:Path derivation tree.png No edit summary current
- 18:5818:58, 1 February 2014 diff hist +172 N File:Path derivation tree.png MTA:Eir FileSystem Path types illustration. Should provide you with a quick overview of the paths. After all, proper path handling is very important in this the FileSystem.
- 16:0316:03, 1 February 2014 diff hist +57 MTA:Eir No edit summary
- 15:0615:06, 1 February 2014 diff hist +914 MTA:Eir/FileSystem →Browsing a File System using Paths
- 14:4814:48, 1 February 2014 diff hist +23 m MTA:Eir/FileSystem/file/functions →FileSystem File Functions current
- 14:4814:48, 1 February 2014 diff hist +23 m MTA:Eir/FileSystem/atranslator/functions →FileSystem Archive Translator Functions
- 14:4714:47, 1 February 2014 diff hist +23 m MTA:Eir/FileSystem/translator/functions →FileSystem Translator Functions
- 14:4614:46, 1 February 2014 diff hist +23 m MTA:Eir/FileSystem/namespace/functions →FileSystem Namespace Functions
- 14:4614:46, 1 February 2014 diff hist +23 m MTA:Eir/FileSystem/functions No edit summary
- 14:4514:45, 1 February 2014 diff hist +82 MTA:Eir/FileSystem No edit summary
- 14:4414:44, 1 February 2014 diff hist +1 MTA:Eir/FileSystem →Browsing a File System using Paths
- 14:4114:41, 1 February 2014 diff hist +1 MTA:Eir/FileSystem No edit summary
- 14:4014:40, 1 February 2014 diff hist +4,981 N MTA:Eir/FileSystem Created page with "The '''MTA:Eir FileSystem''' is the framework used for accessing persistent data in MTA:Eir on places like the harddisk and .zip archives. It is a cross-platform library that..."
- 12:1612:16, 1 February 2014 diff hist +47 MTA:Eir/Classes No edit summary current
- 12:1212:12, 1 February 2014 diff hist +48 MTA:Eir/FileSystem/createZIPArchive No edit summary
- 12:1212:12, 1 February 2014 diff hist +48 MTA:Eir/FileSystem/createArchiveTranslator No edit summary
- 11:5911:59, 1 February 2014 diff hist +3 m MTA:Eir/FileSystem/createFilesystemInterface No edit summary
- 11:5811:58, 1 February 2014 diff hist +127 MTA:Eir/FileSystem/createFilesystemInterface No edit summary
- 11:5411:54, 1 February 2014 diff hist −4 m MTA:Eir/FileSystem/atranslator/save No edit summary
- 11:5311:53, 1 February 2014 diff hist +2,113 N MTA:Eir/FileSystem/atranslator/save Created page with "__NOTOC__ This function attempts to save the contents of an archive into its source file. This is only possible if the source file has been opened as writable. ==Syntax== <syntaxhighlight lang="lua">..."
- 11:3011:30, 1 February 2014 diff hist +47 MTA:Eir/FileSystem/functions No edit summary
- 11:2911:29, 1 February 2014 diff hist +89 N MTA:Eir/FileSystem/atranslator/functions Created page with "==FileSystem Archive Translator Functions== *save"
31 January 2014
- 16:4616:46, 31 January 2014 diff hist +372 N MTA:Eir/FileSystem/file/readUInt Created page with "__NOTOC__ This function attempts to read an unsigned integer (native type) from a file and returns it. The amount of bytes read should be four. ==Syntax== <syntaxhighlight lang="lua"> unsigned..."
- 16:4516:45, 31 January 2014 diff hist +380 N MTA:Eir/FileSystem/file/readUShort Created page with "__NOTOC__ This function attempts to read an unsigned short (native type) from a file and returns it. The amount of bytes read should be two. ==Syntax== <syntaxhighlight lang="lua"> unsigned_sh..."
- 16:4316:43, 31 January 2014 diff hist +1,236 N MTA:Eir/FileSystem/file/isReadable Created page with "__NOTOC__ This function returns whether a stream is readable. If a stream is not readable, then all read operations should result in nil operations (they will return zero bytes r..."
- 16:3816:38, 31 January 2014 diff hist +1,066 N MTA:Eir/FileSystem/file/isWritable Created page with "__NOTOC__ This function returns whether a stream is writable. If a stream is not writable, then all write operations should result in nil operations (they will return zero bytes ..."
- 16:2316:23, 31 January 2014 diff hist +1,494 N MTA:Eir/FileSystem/file/flush Created page with "__NOTOC__ This function writes all temporary buffers of a file/stream object into the output storage. This feature shall be interpreted as a hint, not a necessity. Implementation..."
- 14:5514:55, 31 January 2014 diff hist +1,476 N MTA:Eir/FileSystem/file/eof Created page with "__NOTOC__ This function returns whether the runtime can still read data from the file/stream. This is an implementation defined state that should return false if no data can be i..."
- 14:4514:45, 31 January 2014 diff hist +1,410 N MTA:Eir/FileSystem/file/seek Created page with "__NOTOC__ This function changes the location of the current stream pointer. Like that you can skip file sections, set the stream pointer to a specific location or head to the end..."
- 14:4014:40, 31 January 2014 diff hist +1,094 N MTA:Eir/FileSystem/file/tell Created page with "__NOTOC__ This function returns the current absolute position inside of the file/stream object. It should be the number of bytes that the current stream pointer is set from the b..."
- 14:3514:35, 31 January 2014 diff hist −4 m MTA:Eir/FileSystem/file/stat No edit summary
- 14:3414:34, 31 January 2014 diff hist +390 N MTA:Eir/FileSystem/file/stat Created page with "__NOTOC__ This function returns immediate statistics about this file/stream object. The output should be of same structure like that of [[MTA:Eir/FileSystem/translator/stat|trans..."
- 14:3214:32, 31 January 2014 diff hist +957 N MTA:Eir/FileSystem/file/size Created page with "__NOTOC__ This function returns the size of a specific file/stream from beginning to end. Not all streams have to support this operation. ==Syntax== <syntaxhighlight lang="lua"> int file.size ..."
- 14:2714:27, 31 January 2014 diff hist +515 N MTA:Eir/FileSystem/file/writeBoolean Created page with "__NOTOC__ This function attempts to write a boolean into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. ==Syntax..."
- 14:2514:25, 31 January 2014 diff hist +601 N MTA:Eir/FileSystem/file/writeDouble Created page with "__NOTOC__ This function attempts to write a double into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be eight. ==Synta..."
- 14:2414:24, 31 January 2014 diff hist +547 N MTA:Eir/FileSystem/file/writeFloat Created page with "__NOTOC__ This function attempts to write a float into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four. ==Syntax=..."
- 14:2114:21, 31 January 2014 diff hist +553 N MTA:Eir/FileSystem/file/writeUInt Created page with "__NOTOC__ This function attempts to write an unsigned integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four..."
- 14:2014:20, 31 January 2014 diff hist +544 N MTA:Eir/FileSystem/file/writeInt Created page with "__NOTOC__ This function attempts to write an integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be four. ==Synt..."
- 14:1714:17, 31 January 2014 diff hist +1 MTA:Eir/FileSystem/file/writeShort No edit summary
- 14:1714:17, 31 January 2014 diff hist +1 MTA:Eir/FileSystem/file/writeUShort →Returns
- 14:1714:17, 31 January 2014 diff hist +549 N MTA:Eir/FileSystem/file/writeUShort Created page with "__NOTOC__ This function attempts to write an unsigned short integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should b..."
- 14:1614:16, 31 January 2014 diff hist +478 N MTA:Eir/FileSystem/file/writeShort Created page with "__NOTOC__ This function attempts to write a short integer into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be two. ==..."
- 14:1414:14, 31 January 2014 diff hist +481 N MTA:Eir/FileSystem/file/writeUByte Created page with "__NOTOC__ This function attempts to write an unsigned byte into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. =..."
- 14:1314:13, 31 January 2014 diff hist +478 N MTA:Eir/FileSystem/file/writeByte Created page with "__NOTOC__ This function attempts to write a signed byte into a file/stream and returns how many bytes have actually been written. The amount of bytes written should be one. ==Sy..."
- 13:5913:59, 31 January 2014 diff hist +6 m MTA:Eir/FileSystem/file/readUByte No edit summary
- 13:5713:57, 31 January 2014 diff hist 0 MTA:Eir/FileSystem/file/readUByte No edit summary
- 13:5713:57, 31 January 2014 diff hist +3,024 N MTA:Eir/FileSystem/file/readUByte Created page with "__NOTOC__ This function attempts to read an unsigned byte (native type) from a file and returns it. The amount of bytes read should be one. ==Syntax== <syntaxhighlight lang="lua"> unsigned_byt..."
- 09:4209:42, 31 January 2014 diff hist +261 MTA:Eir/FileSystem/file/readByte No edit summary
- 09:3709:37, 31 January 2014 diff hist +5,774 N MTA:Eir/FileSystem/file/readByte Created page with "__NOTOC__ This function attempts to read a signed byte (native type) from a file and returns it. The amount of bytes read should be one. ==Syntax== <syntaxhighlight lang="lua"> signed_byte fil..."