| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- class "PhysFSFileProvider"
- function PhysFSFileProvider:PhysFSFileProvider(...)
- local arg = {...}
- for k,v in pairs(arg) do
- if type(v) == "table" then
- if v.__ptr ~= nil then
- arg[k] = v.__ptr
- end
- end
- end
- if self.__ptr == nil and arg[1] ~= "__skip_ptr__" then
- self.__ptr = Polycore.PhysFSFileProvider(unpack(arg))
- end
- end
- function PhysFSFileProvider:openFile(fileName, opts)
- local retVal = Polycore.PhysFSFileProvider_openFile(self.__ptr, fileName, opts)
- if retVal == nil then return nil end
- local __c = _G["Polycode::CoreFile"]("__skip_ptr__")
- __c.__ptr = retVal
- return __c
- end
- function PhysFSFileProvider:closeFile(file)
- local retVal = Polycore.PhysFSFileProvider_closeFile(self.__ptr, file.__ptr)
- end
- function PhysFSFileProvider:parseFolder(pathString, showHidden, targetVector)
- local retVal = Polycore.PhysFSFileProvider_parseFolder(self.__ptr, pathString, showHidden, targetVector.__ptr)
- return retVal
- end
- function PhysFSFileProvider:addSource(source)
- local retVal = Polycore.PhysFSFileProvider_addSource(self.__ptr, source)
- end
- function PhysFSFileProvider:removeSource(source)
- local retVal = Polycore.PhysFSFileProvider_removeSource(self.__ptr, source)
- end
- function PhysFSFileProvider:__delete()
- if self then Polycore.delete_PhysFSFileProvider(self.__ptr) end
- end
|