100 líneas
1.8 KiB

  1. //
  2. // v002MeshHelper.m
  3. // v002 Model Importer
  4. //
  5. // Created by vade on 9/26/10.
  6. // Copyright 2010 __MyCompanyName__. All rights reserved.
  7. //
  8. #import "ModelLoaderHelperClasses.h"
  9. @implementation MeshHelper
  10. @synthesize vao;
  11. @synthesize displayList;
  12. @synthesize vertexBuffer;
  13. @synthesize indexBuffer;
  14. @synthesize normalBuffer;
  15. @synthesize numIndices;
  16. @synthesize textureID;
  17. @dynamic diffuseColor;
  18. @dynamic specularColor;
  19. @dynamic ambientColor;
  20. @dynamic emissiveColor;
  21. @synthesize opacity;
  22. @synthesize shininess;
  23. @synthesize specularStrength;
  24. @synthesize twoSided;
  25. - (id) init
  26. {
  27. if((self = [super init]))
  28. {
  29. diffuseColor = aiColor4D(0.8, 0.8, 0.8, 1.0);
  30. specularColor = aiColor4D(0.0f, 0.0f, 0.0f, 1.0f);
  31. ambientColor = aiColor4D(0.2f, 0.2f, 0.2f, 1.0f);
  32. emissiveColor = aiColor4D(0.0f, 0.0f, 0.0f, 1.0f);
  33. }
  34. return self;
  35. }
  36. - (void) setDiffuseColor:(aiColor4D*) color;
  37. {
  38. diffuseColor.r = color->r;
  39. diffuseColor.g = color->g;
  40. diffuseColor.b = color->b;
  41. diffuseColor.a = color->a;
  42. }
  43. - (aiColor4D*) diffuseColor
  44. {
  45. return &diffuseColor;
  46. }
  47. - (void) setSpecularColor:(aiColor4D*) color;
  48. {
  49. specularColor.r = color->r;
  50. specularColor.g = color->g;
  51. specularColor.b = color->b;
  52. specularColor.a = color->a;
  53. }
  54. - (aiColor4D*) specularColor
  55. {
  56. return &specularColor;
  57. }
  58. - (void) setAmbientColor:(aiColor4D*) color;
  59. {
  60. ambientColor.r = color->r;
  61. ambientColor.g = color->g;
  62. ambientColor.b = color->b;
  63. ambientColor.a = color->a;
  64. }
  65. - (aiColor4D*) ambientColor
  66. {
  67. return &ambientColor;
  68. }
  69. - (void) setEmissiveColor:(aiColor4D*) color;
  70. {
  71. emissiveColor.r = color->r;
  72. emissiveColor.g = color->g;
  73. emissiveColor.b = color->b;
  74. emissiveColor.a = color->a;
  75. }
  76. - (aiColor4D*) emissiveColor
  77. {
  78. return &emissiveColor;
  79. }
  80. @end