User contributions for Quiret
Jump to navigation
Jump to search
16 January 2022
- 23:2423:24, 16 January 2022 diff hist +54 m MTA:Eir/FileSystem/translator/delete No edit summary current
- 23:2323:23, 16 January 2022 diff hist +54 m MTA:Eir/FileSystem/translator/chdir No edit summary current
- 23:2223:22, 16 January 2022 diff hist 0 m MTA:Eir/FileSystem/translator/open No edit summary current
- 23:2223:22, 16 January 2022 diff hist 0 m MTA:Eir/FileSystem/translator/exists No edit summary current
- 23:2123:21, 16 January 2022 diff hist 0 m MTA:Eir/FileSystem/translator/createDir No edit summary current
- 23:2123:21, 16 January 2022 diff hist +54 m MTA:Eir/FileSystem/translator/createDir No edit summary
- 23:2123:21, 16 January 2022 diff hist +54 m MTA:Eir/FileSystem/translator/exists No edit summary
- 23:2123:21, 16 January 2022 diff hist −4 m MTA:Eir/FileSystem/translator/open No edit summary
- 23:2023:20, 16 January 2022 diff hist +305 m Modules/FileSystem No edit summary
- 23:1723:17, 16 January 2022 diff hist +470 N MTA:Eir/FileSystem/translator/getPathProcessingMode Created page with "__NOTOC__ This function gets the path-processing-mode for the given file translator. ==Syntax== <syntaxhighlight lang="lua"> string translator.getPathProcessingMode () </syntaxhighlight> ==Returns== This function returns a string describing the current path-processing-mode of the translator. ===Possible Return Values=== *distinguished *ambivalent_file ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/translator/functions}}"
- 23:1623:16, 16 January 2022 diff hist +583 N MTA:Eir/FileSystem/translator/setPathProcessingMode Created page with "__NOTOC__ This function sets the path-processing-mode for the file translator. The path-processing-mode describes how paths are handled in detail during file-path consuming function calls. ==Syntax== <syntaxhighlight lang="lua"> void translator.setPathProcessingMode( string mode ) </syntaxhighlight> ==Arguments== *'''mode:''' value for the translator path-processing-mode (either '''distinguished''' or '''ambivalent_file''') ==Returns== This function returns nil. ==Ex..."
- 23:1423:14, 16 January 2022 diff hist −72 m MTA:Eir/FileSystem/translator/getOutbreakEnabled No edit summary
- 23:1423:14, 16 January 2022 diff hist +661 N MTA:Eir/FileSystem/translator/getOutbreakEnabled Created page with "__NOTOC__ This function gets the outbreak-policy of a file translator. If outbreak is enabled then file path requests outside of the translator root are allowed. Otherwise the user can only access files that are accessible from inside the translator root directory. ==Syntax== <syntaxhighlight lang="lua"> bool translator.setOutbreakEnabled () </syntaxhighlight> ==Arguments== *'''enabled:''' value for the translator outbreak-policy ==Returns== This function returns true..."
- 23:1423:14, 16 January 2022 diff hist +603 N MTA:Eir/FileSystem/translator/setOutbreakEnabled Created page with "__NOTOC__ This function sets the outbreak-policy of a file translator. If outbreak is enabled then file path requests outside of the translator root are allowed. Otherwise the user can only access files that are accessible from inside the translator root directory. ==Syntax== <syntaxhighlight lang="lua"> void translator.setOutbreakEnabled ( bool enabled ) </syntaxhighlight> ==Arguments== *'''enabled:''' value for the translator outbreak-policy ==Returns== This functio..."
- 23:1123:11, 16 January 2022 diff hist +404 N MTA:Eir/FileSystem/getDoBufferAllRaw Created page with "__NOTOC__ This function returns the value of the buffering-policy for newly created raw-file handles. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.getDoBufferAllRaw() </syntaxhighlight> ==Returns== This function returns true if the buffering-policy is enabled, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/namespace/functions}}" current
- 23:1023:10, 16 January 2022 diff hist +661 N MTA:Eir/FileSystem/setDoBufferAllRaw Created page with "__NOTOC__ This function changes the raw-file buffering policy of newly created file streams. If the buffering-policy is enabled then each newly created file stream is wrapped inside of a custom FileSystem buffering handle. File stream modifications that are close to each other are batched together for optimizational purposes. ==Syntax== <syntaxhighlight lang="lua"> void fsnamespace.setDoBufferAllRaw( bool enabled ) </syntaxhighlight> ==Arguments== *'''enabled''': new v..." current
- 23:0623:06, 16 January 2022 diff hist −40 m MTA:Eir/FileSystem/type No edit summary
- 23:0623:06, 16 January 2022 diff hist +535 N MTA:Eir/FileSystem/type Created page with "__NOTOC__ This function returns the type of the given Eir FileSystem object. ==Syntax== <syntaxhighlight lang="lua"> string fsnamespace.type( userdata obj ) </syntaxhighlight> ==Arguments== *'''obj''': the Eir FileSystem object to retrieve the type from ==Returns== This function returns the type string of the queried object. ===Possible Return Values=== *file *file-translator ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/n..."
- 23:0423:04, 16 January 2022 diff hist +2 MTA:Eir/FileSystem/topointer No edit summary current
- 23:0423:04, 16 January 2022 diff hist +557 N MTA:Eir/FileSystem/topointer Created page with "__NOTOC__ This function returns the light-userdata representation of the object. This is the direct pointer into the Eir FileSystem module handle. ==Syntax== <syntaxhighlight lang="lua"> light-userdata fsnamespace.topointer( object obj ) </syntaxhighlight> ==Arguments== *'''obj''': the userdata of the Eir FileSystem Lua environment ==Returns== This function returns the light-userdata value of the internal object, false if not successful. ==Example== <syntaxhighlight..."
- 23:0123:01, 16 January 2022 diff hist +731 N MTA:Eir/FileSystem/streamCompare Created page with "__NOTOC__ This function compares the bytes of two streams for equality. The comparison starts from the current file seek and finishes at the end of the respective file stream. If the read count of either stream does not match the other, then this function fails. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.streamCompare( file left, file right ) </syntaxhighlight> ==Arguments== *'''left''': first file for equality comparison *'''right''': second file for equ..." current
- 22:5822:58, 16 January 2022 diff hist +641 N MTA:Eir/FileSystem/pathToFilename Created page with "__NOTOC__ This function returns the filename and the direction portions of a filepath, seperated into two strings. ==Syntax== <syntaxhighlight lang="lua"> string, string fsnamespace.pathToFilename( string path, bool includeExtention ) </syntaxhighlight> ==Arguments== *'''path''': the file path to extract from *'''includeExtention''': if true then the filename extention is included in the result ==Returns== This function returns the filename and directory of the provid..." current
- 22:4922:49, 16 January 2022 diff hist −6 m MTA:Eir/FileSystem/copyStreamCount No edit summary current
- 22:4922:49, 16 January 2022 diff hist −6 m MTA:Eir/FileSystem/copyStream No edit summary current
- 22:4822:48, 16 January 2022 diff hist +40 m MTA:Eir/FileSystem/copyFile No edit summary current
- 22:4822:48, 16 January 2022 diff hist +40 m MTA:Eir/FileSystem/createFileIterative No edit summary current
- 22:4722:47, 16 January 2022 diff hist −6 m MTA:Eir/FileSystem/createMemoryFile No edit summary current
- 22:4722:47, 16 January 2022 diff hist +983 N MTA:Eir/FileSystem/copyStreamCount Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. The copy is only performed up to a specified count of bytes. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStreamCount( file src, file dst, int count )..."
- 22:4522:45, 16 January 2022 diff hist +844 N MTA:Eir/FileSystem/copyStream Created page with "__NOTOC__ This function copies data starting from a source file stream into a specified destination stream. The copy of data is performed starting from the source file seek. Read operations on the file streams advance the seek pointers. Thus the seek pointers stay changed after the function has completed. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyStream( file src, file dst ) </syntaxhighlight> ==Arguments== *'''src''': source of the copy operation,..."
- 22:4122:41, 16 January 2022 diff hist +670 N MTA:Eir/FileSystem/copyFile Created page with "__NOTOC__ This function copies files between two translators. ==Syntax== <syntaxhighlight lang="lua"> bool fsnamespace.copyFile( translator srcTrans, string srcPath, translator dstTrans, string dstPath ) </syntaxhighlight> ==Arguments== *'''srcTrans:''' source translator for the file of origin *'''srcPath:''' path into the source translator *'''dstTrans:''' target translator *'''dstPath:''' path into the target translator ==Returns== This function returns true if the..."
- 22:3722:37, 16 January 2022 diff hist +1,001 N MTA:Eir/FileSystem/createFileIterative Created page with "__NOTOC__ This function attempts to create a file with numeric iteration for filename collision avoidance. If a specific filename is taken then an the algorithm will try to create the next file with increased numeric insert. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createFileIterative( translator target, string prefix, string suffix, int maxIterations ) </syntaxhighlight> ==Arguments== *'''target''': the file translator based on which to create the file..."
- 22:3022:30, 16 January 2022 diff hist +430 N MTA:Eir/FileSystem/createMemoryFile Created page with "__NOTOC__ This function creates a single file that is resident entirely in system memory. ==Syntax== <syntaxhighlight lang="lua"> file fsnamespace.createMemoryFile( ) </syntaxhighlight> ==Returns== This function returns a new file object if successful, false otherwise. ==Example== <syntaxhighlight lang="lua"> -- TODO </syntaxhighlight> {{:MTA:Eir/FileSystem/namespace/functions}} {{:MTA:Eir/FileSystem/translator/functions}}"
- 22:2322:23, 16 January 2022 diff hist +771 N MTA:Eir/FileSystem/createRAMDisk Created page with "__NOTOC__ This function creates a FileSystem translator which is located entirely inside of MTA application memory, also known as RAM. ==Syntax== <syntaxhighlight lang="lua"> translator fsnamespace.createRAMDisk( bool caseSensitive ) </syntaxhighlight> ==Arguments== *'''caseSensitive:''' if true then all namespaces are compared case sensitively in path operations, otherwise strict character equality comparison is performed ==Returns== This function returns a new '''Fi..." current
- 22:1622:16, 16 January 2022 diff hist −138 Modules/FileSystem →Support
- 22:1122:11, 16 January 2022 diff hist +147 MTA:Eir/FileSystem/translator/open No edit summary
- 22:0722:07, 16 January 2022 diff hist +116 MTA:Eir/FileSystem/translator/open No edit summary
- 22:0522:05, 16 January 2022 diff hist +13 MTA:Eir/FileSystem/atranslator/functions →FileSystem Archive Translator Functions current
- 22:0422:04, 16 January 2022 diff hist +648 MTA:Eir/FileSystem/namespace/functions →FileSystem Namespace Functions current
- 22:0122:01, 16 January 2022 diff hist +304 MTA:Eir/FileSystem/translator/functions →FileSystem Translator Functions current
- 21:5521:55, 16 January 2022 diff hist +1 m MTA:Eir/FileSystem →Translator Access on Unix
- 21:5521:55, 16 January 2022 diff hist +1 m MTA:Eir/FileSystem →Translator Access on Windows
- 21:5021:50, 16 January 2022 diff hist +46 m MTA:Eir/FileSystem/createFilesystemInterface No edit summary current
- 21:4921:49, 16 January 2022 diff hist −58 Modules/FileSystem No edit summary
11 January 2022
- 23:2523:25, 11 January 2022 diff hist +149 m DxDrawMaterialPrimitive3D →Remarks
- 12:4512:45, 11 January 2022 diff hist +165 DxDrawMaterialPrimitive3D →Remarks
- 12:4112:41, 11 January 2022 diff hist +150 m DxDrawMaterialPrimitive3D →Remarks
- 12:3212:32, 11 January 2022 diff hist +1,250 DxDrawMaterialPrimitive3D added Remarks about the flexibility of this dx function
- 12:2712:27, 11 January 2022 diff hist +150 N File:D3d9 screen space transformation.png Illustrates how vertex coordinates should be transformed into a format the the Direct3D 9 pipeline does expect for feeding into the GPU. current
2 January 2022
- 18:1918:19, 2 January 2022 diff hist +631 SetPedControlState No edit summary
15 December 2021
- 11:1711:17, 15 December 2021 diff hist +292 Element/Team No edit summary