wrap_FileData.cpp 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * Copyright (c) 2006-2009 LOVE Development Team
  3. *
  4. * This software is provided 'as-is', without any express or implied
  5. * warranty. In no event will the authors be held liable for any damages
  6. * arising from the use of this software.
  7. *
  8. * Permission is granted to anyone to use this software for any purpose,
  9. * including commercial applications, and to alter it and redistribute it
  10. * freely, subject to the following restrictions:
  11. *
  12. * 1. The origin of this software must not be misrepresented; you must not
  13. * claim that you wrote the original software. If you use this software
  14. * in a product, an acknowledgment in the product documentation would be
  15. * appreciated but is not required.
  16. * 2. Altered source versions must be plainly marked as such, and must not be
  17. * misrepresented as being the original software.
  18. * 3. This notice may not be removed or altered from any source distribution.
  19. **/
  20. #include "wrap_FileData.h"
  21. #include <common/wrap_Data.h>
  22. namespace love
  23. {
  24. namespace filesystem
  25. {
  26. namespace physfs
  27. {
  28. FileData * luax_checkfiledata(lua_State * L, int idx)
  29. {
  30. return luax_checktype<FileData>(L, idx, "FileData", FILESYSTEM_FILE_DATA_T);
  31. }
  32. int w_FileData_getFilename(lua_State * L)
  33. {
  34. FileData * t = luax_checkfiledata(L, 1);
  35. lua_pushstring(L, t->getFilename().c_str());
  36. return 1;
  37. }
  38. int w_FileData_getExtension(lua_State * L)
  39. {
  40. FileData * t = luax_checkfiledata(L, 1);
  41. lua_pushstring(L, t->getExtension().c_str());
  42. return 1;
  43. }
  44. int w_FileData_open(lua_State * L)
  45. {
  46. static const luaL_Reg w_FileData_functions[] = {
  47. // Data
  48. { "getPointer", w_Data_getPointer },
  49. { "getSize", w_Data_getSize },
  50. { "getFilename", w_FileData_getFilename },
  51. { "getExtension", w_FileData_getExtension },
  52. { 0, 0 }
  53. };
  54. return luax_register_type(L, "FileData", w_FileData_functions);
  55. }
  56. } // physfs
  57. } // filesystem
  58. } // love