fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. enum WindingOrder {
  6. BOTTOM = 0,
  7. RIGHT,
  8. TOP,
  9. LEFT
  10. };
  11.  
  12. void tester(const int* square, WindingOrder edge, int* output) {
  13. switch (edge) {
  14. case BOTTOM:
  15. output[0] = square[0]; output[1] = square[1]; output[2] = square[2]; output[3] = square[1];
  16. break;
  17. case RIGHT:
  18. output[0] = square[2]; output[1] = square[1]; output[2] = square[2]; output[3] = square[3];
  19. break;
  20. case TOP:
  21. output[0] = square[2]; output[1] = square[3]; output[2] = square[0]; output[3] = square[3];
  22. break;
  23. case LEFT:
  24. output[0] = square[0]; output[1] = square[3]; output[2] = square[0]; output[3] = square[1];
  25. break;
  26. }
  27. }
  28.  
  29. int getIndex(int k, int edge) {
  30. int A = (k >> 1) & 1;
  31. int B = k & 1;
  32. int C = (edge >> 1) & 1;
  33. int D = edge & 1;
  34. int P = A&~B&~C | A&~C&D | ~B&~C&D | ~A&B&C | ~A&C&~D | B&C&~D;
  35. int Q = B;
  36. return (P << 1) + Q;
  37. }
  38.  
  39. int main() {
  40. const int size = 4;
  41. const int square[size] = { 0, 1, 2, 3 };
  42. int test[size];
  43. int output[size];
  44.  
  45. for (WindingOrder edge = BOTTOM; edge <= LEFT; edge = static_cast<WindingOrder>(static_cast<int>(edge) + 1)) {
  46. tester(square, edge, test);
  47.  
  48. for (int i = 0; i < size ; ++i) {
  49. output[i] = square[getIndex(i, static_cast<int>(edge))];
  50. }
  51.  
  52. const bool firstX = output[0] == test[0];
  53. const bool firstY = output[1] == test[1];
  54. const bool secondX = output[2] == test[2];
  55. const bool secondY = output[3] == test[3];
  56.  
  57. if (!firstX) {
  58. cout << "Mismatch at i = 0: test = " << test[0] << " output = " << output[0] << endl;
  59. } else if (!firstY) {
  60. cout << "Mismatch at i = 1: test = " << test[1] << " output = " << output[1] << endl;
  61. } else if (!secondX) {
  62. cout << "Mismatch at i = 2: test = " << test[2] << " output = " << output[2] << endl;
  63. } else if (!secondY) {
  64. cout << "Mismatch at i = 3: test = " << test[3] << " output = " << output[3] << endl;
  65. } else {
  66. cout << "Match: " << output[0] << ' ' << output[1] << ' ' << output[2] << ' ' << output[3] << endl;
  67. }
  68. }
  69.  
  70. return 0;
  71. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
Match: 0 1 2 1
Match: 2 1 2 3
Match: 2 3 0 3
Match: 0 3 0 1