mmult.cc 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10. #include <string.h>
  11. typedef char *cell;
  12. typedef cell matrix[4][4];
  13. cell newcell()
  14. {
  15. cell ret = (char*)malloc(80);
  16. ret[0] = 0;
  17. return ret;
  18. }
  19. char *add_term(char *s, char *t)
  20. {
  21. cell ret;
  22. if (!t)
  23. ret = s;
  24. else if (!s)
  25. ret = strdup(t);
  26. else {
  27. ret = newcell();
  28. if (atoi(s) && atoi(t)) {
  29. sprintf(ret,"%+d",atoi(s)+atoi(t));
  30. }
  31. else {
  32. strcat(ret,s);
  33. strcat(ret,t);
  34. }
  35. }
  36. return ret;
  37. }
  38. char *mult_term(char *s, char *t)
  39. {
  40. cell ret;
  41. if (!s || !t)
  42. ret = 0;
  43. else if (atoi(t)==1)
  44. ret = strdup(s);
  45. else if (atoi(t)==-1) {
  46. ret = strdup(s);
  47. ret[0] = ((ret[0]=='-')?'+':'-');
  48. }
  49. else if (atoi(s)==1) {
  50. ret = strdup(t);
  51. }
  52. else if (atoi(s)==-1) {
  53. ret = strdup(t);
  54. ret[0] = ((ret[0]=='-')?'+':'-');
  55. }
  56. else {
  57. ret = newcell();
  58. if (atoi(s) && atoi(t)) {
  59. sprintf(ret,"%+d",atoi(s)*atoi(t));
  60. }
  61. else {
  62. strcat(ret, s);
  63. strcat(ret, t+1);
  64. ret[0] = (((s[0]=='-') ^ (t[0]=='-'))?'-':'+');
  65. }
  66. }
  67. return ret;
  68. }
  69. void matmult(matrix a, matrix b, matrix result)
  70. {
  71. for (int j=0; j<4; j++)
  72. for (int i=0; i<4; i++) {
  73. cell sum = 0;
  74. cell prod;
  75. for (int k=0; k<4; k++)
  76. sum = add_term(sum, mult_term(a[j][k], b[k][i]));
  77. result[j][i] = sum;
  78. }
  79. }
  80. void matdup(matrix a,matrix b)
  81. {
  82. for (int j=0; j<4; j++)
  83. for (int i=0; i<4; i++)
  84. a[j][i] = (b[j][i]?strdup(b[j][i]):0);
  85. }
  86. void mattranspose(matrix a,matrix dest)
  87. {
  88. for (int j=0; j<4; j++)
  89. for (int i=0; i<4; i++)
  90. dest[j][i] = (a[i][j]?strdup(a[i][j]):0);
  91. }
  92. void matnegate(matrix a,matrix dest)
  93. {
  94. for (int j=0; j<4; j++)
  95. for (int i=0; i<4; i++)
  96. dest[j][i] = mult_term(a[i][j],"-1");
  97. }
  98. void mat_gett(matrix a,matrix dest)
  99. {
  100. for (int j=0; j<4; j++)
  101. for (int i=0; i<4; i++)
  102. if (i==j)
  103. dest[j][i] = strdup("+1");
  104. else if (i>=3)
  105. dest[j][i] = (a[j][i]?strdup(a[j][i]):0);
  106. else
  107. dest[j][i] = 0;
  108. }
  109. void mat_getrot(matrix a,matrix dest)
  110. {
  111. for (int j=0; j<3; j++)
  112. {
  113. dest[3][j] = 0;
  114. dest[j][3] = 0;
  115. for (int i=0; i<3; i++)
  116. dest[j][i] = (a[j][i]?strdup(a[j][i]):0);
  117. }
  118. dest[3][3] = strdup("+1");
  119. }
  120. void print(matrix a)
  121. {
  122. for (int j=0; j<4; j++)
  123. for (int i=0; i<4; i++)
  124. printf("(%d,%d) = %s\n", j+1,i+1, a[j][i]?a[j][i]:"0");
  125. }
  126. void printmat(matrix a)
  127. {
  128. int len[4], i,j,l;
  129. char buf[4][20];
  130. for (i=0; i<4; i++)
  131. len[i]=1;
  132. for (j=0; j<4; j++)
  133. for (i=0; i<4; i++)
  134. if (a[j][i])
  135. if ((l=strlen(a[j][i]))>len[i])
  136. len[i]=l;
  137. for (i=0; i<4; i++)
  138. sprintf(buf[i]," %%-%ds ",len[i]);
  139. for (j=0; j<4; j++)
  140. {
  141. printf("[ ");
  142. for (i=0; i<4; i++)
  143. printf(buf[i], a[j][i]?a[j][i]:"0");
  144. printf(" ]\n");
  145. }
  146. }
  147. void printaff(matrix a)
  148. {
  149. static char pr[]="xyzt";
  150. for (int i=0; i<4; i++)
  151. for (int j=0; j<3; j++)
  152. printf("aff.%c.%c = %s\n", pr[i],pr[j], a[j][i]?a[j][i]:"0");
  153. }
  154. matrix blank =
  155. { { "+", "+", "+", "+" },
  156. { "+", "+", "+", "+" },
  157. { "+", "+", "+", "+" },
  158. { "+", "+", "+", "+" } };
  159. matrix v =
  160. { { "+v(1,1)", "+v(1,2)", "+v(1,3)", "+v(1,4)" },
  161. { "+v(2,1)", "+v(2,2)", "+v(2,3)", "+v(2,4)" },
  162. { "+v(3,1)", "+v(3,2)", "+v(3,3)", "+v(3,4)" },
  163. { "+v(4,1)", "+v(4,2)", "+v(4,3)", "+v(4,4)" } };
  164. matrix aff =
  165. { { "+aff.x.x", "+aff.y.x", "+aff.z.x", "+aff.t.x" },
  166. { "+aff.x.y", "+aff.y.y", "+aff.z.y", "+aff.t.y" },
  167. { "+aff.x.z", "+aff.y.z", "+aff.z.z", "+aff.t.z" },
  168. { 0 , 0 , 0 , "+1" } };
  169. matrix m1 =
  170. { { "+1", 0, 0, 0 },
  171. { 0, "+1", 0, 0 },
  172. { 0, 0, "+1", 0 },
  173. { 0, 0, 0, "+1" } };
  174. matrix m0 =
  175. { { 0, 0, 0, 0 },
  176. { 0, 0, 0, 0 },
  177. { 0, 0, 0, 0 },
  178. { 0, 0, 0, 0 } };
  179. matrix rotz =
  180. { { "+cos(z)", "-sin(z)", 0 , 0 },
  181. { "+sin(z)", "+cos(z)", 0 , 0 },
  182. { 0 , 0 , "+1" , 0 },
  183. { 0 , 0 , 0 , "+1" } };
  184. matrix irotz =
  185. { { "+cos(z)", "+sin(z)", 0 , 0 },
  186. { "-sin(z)", "+cos(z)", 0 , 0 },
  187. { 0 , 0 , "+1" , 0 },
  188. { 0 , 0 , 0 , "+1" } };
  189. matrix roty =
  190. { { "+cos(y)", 0 , "+sin(y)", 0 },
  191. { 0 , "+1" , 0 , 0 },
  192. { "-sin(y)", 0 , "+cos(y)", 0 },
  193. { 0 , 0 , 0 , "+1" } };
  194. matrix iroty =
  195. { { "+cos(y)", 0 , "-sin(y)", 0 },
  196. { 0 , "+1" , 0 , 0 },
  197. { "+sin(y)", 0 , "+cos(y)", 0 },
  198. { 0 , 0 , 0 , "+1" } };
  199. matrix rotx =
  200. { { "+1" , 0 , 0 , 0 },
  201. { 0 , "+cos(x)", "-sin(x)", 0 },
  202. { 0 , "+sin(x)", "+cos(x)", 0 },
  203. { 0 , 0 , 0 , "+1" } };
  204. matrix irotx =
  205. { { "+1" , 0 , 0 , 0 },
  206. { 0 , "+cos(x)", "+sin(x)", 0 },
  207. { 0 , "-sin(x)", "+cos(x)", 0 },
  208. { 0 , 0 , 0 , "+1" } };
  209. matrix xlat =
  210. { { "+1" , 0 , 0 , "+tx" },
  211. { 0 , "+1" , 0 , "+ty" },
  212. { 0 , 0 , "+1" , "+tz" },
  213. { 0 , 0 , 0 , "+1" } };
  214. matrix ixlat =
  215. { { "+1" , 0 , 0 , "-tx" },
  216. { 0 , "+1" , 0 , "-ty" },
  217. { 0 , 0 , "+1" , "-tz" },
  218. { 0 , 0 , 0 , "+1" } };
  219. matrix scale =
  220. { { "+scalex", 0 , 0 , 0 },
  221. { 0 , "+scaley", 0 , 0 },
  222. { 0 , 0 , "+scalez", 0 },
  223. { 0 , 0 , 0 , "+1" } };
  224. matrix iscale =
  225. { { "+(1/scalex)", 0 , 0 , 0 },
  226. { 0 , "+(1/scaley)", 0 , 0 },
  227. { 0 , 0 , "+(1/scalez)", 0 },
  228. { 0 , 0 , 0 , "+1" } };
  229. matrix cam =
  230. { { "+cam.x.x", "+cam.y.x", "+cam.z.x", "+cam.t.x" },
  231. { "+cam.x.y", "+cam.y.y", "+cam.z.y", "+cam.t.y" },
  232. { "+cam.x.z", "+cam.y.z", "+cam.z.z", "+cam.t.z" },
  233. { 0 , 0 , 0 , "+1" } };
  234. matrix icamt =
  235. { { "+1" , 0 , 0 , "-cam.t.x" },
  236. { 0 , "+1" , 0 , "-cam.t.y" },
  237. { 0 , 0 , "+1" , "-cam.t.z" },
  238. { 0 , 0 , 0 , "+1" } };
  239. matrix point =
  240. { { 0 , 0 , 0 , "+px" },
  241. { 0 , 0 , 0 , "+py" },
  242. { 0 , 0 , 0 , "+pz" },
  243. { 0 , 0 , 0 , "+1" } };
  244. matrix front =
  245. { { 0 , 0 , 0 , "+1" },
  246. { 0 , 0 , 0 , 0 },
  247. { 0 , 0 , 0 , 0 },
  248. { 0 , 0 , 0 , "+1" } };
  249. void main(int argc, char **argv)
  250. {
  251. matrix tmp,tmp2;
  252. int test;
  253. test = (argc>1);
  254. if (test) {
  255. printf("\n1*0 = \n");
  256. matmult(m1,m0,tmp);
  257. print(tmp);
  258. printf("\n1*1 = \n");
  259. matmult(m1,m1,tmp);
  260. print(tmp);
  261. printf("\nv*0 = \n");
  262. matmult(v,m0,tmp);
  263. print(tmp);
  264. printf("\nv*1 = \n");
  265. matmult(v,m1,tmp);
  266. print(tmp);
  267. printf("\n1*v = \n");
  268. matmult(m1,v,tmp);
  269. print(tmp);
  270. printf("\nrotz*roty*rotx = \n");
  271. matmult(rotz,roty,tmp);
  272. matmult(tmp,rotx,tmp2);
  273. printaff(tmp2);
  274. }
  275. matrix test1, test2;
  276. matmult(aff, xlat, test1);
  277. printaff(test1);
  278. printf("\n");
  279. matmult(aff, rotz, test1);
  280. printaff(test1);
  281. printf("\n");
  282. matmult(aff, roty, test1);
  283. printaff(test1);
  284. printf("\n");
  285. matmult(aff, rotx, test1);
  286. printaff(test1);
  287. printf("\n");
  288. matmult(aff, scale, test1);
  289. printaff(test1);
  290. printf("\n");
  291. matrix camrot,icamrot,ixform;
  292. mat_getrot(cam, camrot);
  293. mattranspose(camrot, icamrot);
  294. printf("\nicamt = \n");
  295. printmat(icamt);
  296. printf("\nicamrot = \n");
  297. printmat(icamrot);
  298. matmult(icamrot,icamt,ixform);
  299. printf("\nixform = \n");
  300. printmat(ixform);
  301. matmult(ixform,point,tmp);
  302. printmat(tmp);
  303. }