|
Generated by diff2html.pl © Yves Bailly, MandrakeSoft S.A. 2001, Ryohei Morita 2007 diff2html.pl is licensed under the GNU GPL. |
../112-2/112-2-Replay.c | 112-3-AnimationFile.c | |||
---|---|---|---|---|
820 lines 29999 bytes Last modified : Mon Nov 21 17:55:25 2011 |
928 lines 33445 bytes Last modified : Mon Nov 21 17:55:28 2011 |
|||
1 | // Keisanki Joron 2 (Introduction to Computing II) | 1 | // Keisanki Joron 2 (Introduction to Computing II) | |
2 | // Dept. of Engineering Systems, University of Tsukuba | 2 | // Dept. of Engineering Systems, University of Tsukuba | |
3 | // [UTF-8 / Unix] | 3 | // [UTF-8 / Unix] | |
4 | 4 | |||
5 | // 2011/11/21b kameda[at]iit.tsukuba.ac.jp | 5 | // 2011/11/21b kameda[at]iit.tsukuba.ac.jp | |
6 | // 12.2 æ“作ã®å†ç¾ | 6 | // 12.3 æ“作ã®ä¿å˜ã¨èªè¾¼ | |
7 | 7 | |||
8 | #include <stdio.h> | 8 | #include <stdio.h> | |
9 | #include <stdlib.h> // exit(), calloc() | 9 | #include <stdlib.h> // exit(), calloc() | |
10 | #include <math.h> // sqrt() | 10 | #include <math.h> // sqrt() | |
11 | #include <GL/glut.h> | 11 | #include <GL/glut.h> | |
12 | 12 | |||
13 | // *********************************************************************** | 13 | // *********************************************************************** | |
14 | // structures ************************************************************ | 14 | // structures ************************************************************ | |
15 | 15 | |||
16 | // +---------------------------------------------------- | 16 | // +---------------------------------------------------- | |
17 | // 1ã¤ã®ç‚¹ã®ãŸã‚ã®æ§‹é€ 体 | 17 | // 1ã¤ã®ç‚¹ã®ãŸã‚ã®æ§‹é€ 体 | |
18 | // +---------------------------------------------------- | 18 | // +---------------------------------------------------- | |
19 | struct ic2POINT { | 19 | struct ic2POINT { | |
20 | float x; | 20 | float x; | |
21 | float y; | 21 | float y; | |
22 | float z; | 22 | float z; | |
23 | }; | 23 | }; | |
24 | 24 | |||
25 | // +---------------------------------------------------- | 25 | // +---------------------------------------------------- | |
26 | // 1ã¤ã®è‰²ã®ãŸã‚ã®æ§‹é€ 体 | 26 | // 1ã¤ã®è‰²ã®ãŸã‚ã®æ§‹é€ 体 | |
27 | // +---------------------------------------------------- | 27 | // +---------------------------------------------------- | |
28 | struct ic2COLOR { | 28 | struct ic2COLOR { | |
29 | float r; | 29 | float r; | |
30 | float g; | 30 | float g; | |
31 | float b; | 31 | float b; | |
32 | }; | 32 | }; | |
33 | 33 | |||
34 | // +---------------------------------------------------- | 34 | // +---------------------------------------------------- | |
35 | // 1ã¤ã®ä¸‰è§’形パッãƒã®ãŸã‚ã®æ§‹é€ 体 | 35 | // 1ã¤ã®ä¸‰è§’形パッãƒã®ãŸã‚ã®æ§‹é€ 体 | |
36 | // 次ã®ä¸‰è§’形パッãƒã¸ã®ãƒã‚¤ãƒ³ã‚¿ã‚’æŒã¤ã€‚ | 36 | // 次ã®ä¸‰è§’形パッãƒã¸ã®ãƒã‚¤ãƒ³ã‚¿ã‚’æŒã¤ã€‚ | |
37 | // v(st) × v(su) [外ç©]ãŒã“ã®é¢ã®æ³•ç·šãƒ™ã‚¯ãƒˆãƒ«ã‚’æˆã™(å³ãƒã‚¸å¼) | 37 | // v(st) × v(su) [外ç©]ãŒã“ã®é¢ã®æ³•ç·šãƒ™ã‚¯ãƒˆãƒ«ã‚’æˆã™(å³ãƒã‚¸å¼) | |
38 | // +---------------------------------------------------- | 38 | // +---------------------------------------------------- | |
39 | struct ic2PATCH { | 39 | struct ic2PATCH { | |
40 | struct ic2POINT s; // é ‚ç‚¹s | 40 | struct ic2POINT s; // é ‚ç‚¹s | |
41 | struct ic2POINT t; // é ‚ç‚¹t | 41 | struct ic2POINT t; // é ‚ç‚¹t | |
42 | struct ic2POINT u; // é ‚ç‚¹u | 42 | struct ic2POINT u; // é ‚ç‚¹u | |
43 | struct ic2POINT n; // 法線ベクトル(æ£è¦åŒ–ã•ã‚ŒãŸæ–¹å‘ベクトル) | 43 | struct ic2POINT n; // 法線ベクトル(æ£è¦åŒ–ã•ã‚ŒãŸæ–¹å‘ベクトル) | |
44 | struct ic2POINT b; // パッãƒã®é‡å¿ƒ | 44 | struct ic2POINT b; // パッãƒã®é‡å¿ƒ | |
45 | float l; // 法線ベクトル表示時ã®é•·ã•è£œæ£ (l * n) | 45 | float l; // 法線ベクトル表示時ã®é•·ã•è£œæ£ (l * n) | |
46 | struct ic2COLOR c; // 色ã®å¼·åº¦ (通常ã¯0.0 - 1.0) | 46 | struct ic2COLOR c; // 色ã®å¼·åº¦ (通常ã¯0.0 - 1.0) | |
47 | struct ic2PATCH *next; // 次ã®ä¸‰è§’形パッãƒã¸ã®ãƒã‚¤ãƒ³ã‚¿ | 47 | struct ic2PATCH *next; // 次ã®ä¸‰è§’形パッãƒã¸ã®ãƒã‚¤ãƒ³ã‚¿ | |
48 | }; | 48 | }; | |
49 | 49 | |||
50 | // +---------------------------------------------------- | 50 | // +---------------------------------------------------- | |
51 | // 1ã¤ã®ã‚ー入力ã®ãŸã‚ã®æ§‹é€ 体 | 51 | // 1ã¤ã®ã‚ー入力ã®ãŸã‚ã®æ§‹é€ 体 | |
52 | // +---------------------------------------------------- | 52 | // +---------------------------------------------------- | |
53 | struct ic2KEYINPUT { | 53 | struct ic2KEYINPUT { | |
54 | unsigned char key; | 54 | unsigned char key; | |
55 | struct ic2KEYINPUT *next; | 55 | struct ic2KEYINPUT *next; | |
56 | }; | 56 | }; | |
57 | 57 | |||
58 | // *********************************************************************** | 58 | // *********************************************************************** | |
59 | // function prototypes *************************************************** | 59 | // function prototypes *************************************************** | |
60 | 60 | |||
61 | void ic2_timerhandler(int keynumber); | 61 | void ic2_timerhandler(int keynumber); | |
62 | 62 | |||
63 | // *********************************************************************** | 63 | // *********************************************************************** | |
64 | // global variables ****************************************************** | 64 | // global variables ****************************************************** | |
65 | 65 | |||
66 | // +---------------------------------------------------- | 66 | // +---------------------------------------------------- | |
67 | // Global Variables | 67 | // Global Variables | |
68 | // +---------------------------------------------------- | 68 | // +---------------------------------------------------- | |
69 | // OpenGLã®Callbackを使ã†ã¨å¤‰æ•°å€¤ã®å¼•ã渡ã—ãŒã§ããªã„ã“ã¨ãŒå¤šã„ã®ã§ã€ | |||
70 | // 大域変数ã«é ¼ã‚ŠãŒã¡ã«ãªã‚‹ | |||
71 | // (ãªã„ã—大域変数ã«ç›¸å½“ã™ã‚‹å¤‰æ•°ç¾¤ã‚’管ç†ã™ã‚‹é–¢æ•°ã‚’別途用æ„ã™ã‚‹ï¼‰ | |||
69 | 72 | |||
70 | // Windowサイズ | 73 | // Windowサイズ | |
71 | int window_w = 400; | 74 | int window_w = 400; | |
72 | int window_h = 400; | 75 | int window_h = 400; | |
73 | 76 | |||
74 | // 直交投影時ã®ã‚¹ã‚±ãƒ¼ãƒ«ãƒ•ã‚¡ã‚¯ã‚¿ [pixel / unit_of_imager] | 77 | // 直交投影時ã®ã‚¹ã‚±ãƒ¼ãƒ«ãƒ•ã‚¡ã‚¯ã‚¿ [pixel / unit_of_imager] | |
75 | // ã“ã“ã§ã¯æ£è¦åŒ–カメラã®æ’®åƒé¢ã§ã® 1.0 å˜ä½ã‚’ 200ç”»ç´ ã«ç›¸å½“ã•ã›ã‚‹ | 78 | // ã“ã“ã§ã¯æ£è¦åŒ–カメラã®æ’®åƒé¢ã§ã® 1.0 å˜ä½ã‚’ 200ç”»ç´ ã«ç›¸å½“ã•ã›ã‚‹ | |
76 | float ortho_unit = 200.0; | 79 | float ortho_unit = 200.0; | |
77 | 80 | |||
78 | // é€è¦–投影ã«ç”¨ã„る焦点è·é›¢ [pixel] | 81 | // é€è¦–投影ã«ç”¨ã„る焦点è·é›¢ [pixel] | |
79 | // yæ–¹å‘ã« fovy度 é–‹ã„ã¦ç”»åƒã®ç¸¦ãŒ400ç”»ç´ ã®ã¨ãã®ç„¦ç‚¹è·é›¢ã§å˜ä½ã¯ç”»ç´ 。 | 82 | // yæ–¹å‘ã« fovy度 é–‹ã„ã¦ç”»åƒã®ç¸¦ãŒ400ç”»ç´ ã®ã¨ãã®ç„¦ç‚¹è·é›¢ã§å˜ä½ã¯ç”»ç´ 。 | |
80 | // ウィンドウサイズ変更時ã®æ‰±ã„: | 83 | // ウィンドウサイズ変更時ã®æ‰±ã„: | |
81 | // ・本プãƒã‚°ãƒ©ãƒ ã§ã¯ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚µã‚¤ã‚ºãŒé€”ä¸ã§å¤‰ã‚ã‚‹ã¨ãã«è¦‹ãŸç›®ã®å¤§ãã•ã‚’ä¿ã¤ã€‚ | 84 | // ・本プãƒã‚°ãƒ©ãƒ ã§ã¯ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚µã‚¤ã‚ºãŒé€”ä¸ã§å¤‰ã‚ã‚‹ã¨ãã«è¦‹ãŸç›®ã®å¤§ãã•ã‚’ä¿ã¤ã€‚ | |
82 | // ・ã“ã“ã§ã¯ã€æ¦‚念的ã«ã¯ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚µã‚¤ã‚ºå¤‰æ›´ã¯æ’®åƒé¢ã®å¤§ãã•å¤‰åŒ–ã‚’æ„味ã™ã‚‹ã€‚ | 85 | // ・ã“ã“ã§ã¯ã€æ¦‚念的ã«ã¯ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚µã‚¤ã‚ºå¤‰æ›´ã¯æ’®åƒé¢ã®å¤§ãã•å¤‰åŒ–ã‚’æ„味ã™ã‚‹ã€‚ | |
83 | // ・焦点è·é›¢ãŒåŒä¸€ã®ã¾ã¾æ’®åƒé¢ã®å¤§ãã•ã®ã¿å¤‰åŒ–ã—ãŸã¨ã—ã¦æŠ•å½±ã‚’表ç¾ã™ã‚‹ã€‚ | 86 | // ・焦点è·é›¢ãŒåŒä¸€ã®ã¾ã¾æ’®åƒé¢ã®å¤§ãã•ã®ã¿å¤‰åŒ–ã—ãŸã¨ã—ã¦æŠ•å½±ã‚’表ç¾ã™ã‚‹ã€‚ | |
84 | // | 87 | // | |
85 | // æ’®åƒé¢ã®æ¨ªå¹…400ç”»ç´ ã«å¯¾ã—ã¦æ°´å¹³ç”»è§’35.0°ã¨ãªã‚‹ç„¦ç‚¹è·é›¢ã‚’åˆæœŸå€¤è¨å®šï¼š | 88 | // æ’®åƒé¢ã®æ¨ªå¹…400ç”»ç´ ã«å¯¾ã—ã¦æ°´å¹³ç”»è§’35.0°ã¨ãªã‚‹ç„¦ç‚¹è·é›¢ã‚’åˆæœŸå€¤è¨å®šï¼š | |
86 | // tan(35.0[deg]/2) = (400[pixel]/2) / f [pixel] | 89 | // tan(35.0[deg]/2) = (400[pixel]/2) / f [pixel] | |
87 | // → f = 634.319 [pixel] | 90 | // → f = 634.319 [pixel] | |
88 | double camera_f = 634.319; | 91 | double camera_f = 634.319; | |
89 | 92 | |||
90 | // Windowã®ID(æ画管ç†ç”¨ï¼‰ | 93 | // Windowã®ID(æ画管ç†ç”¨ï¼‰ | |
91 | int window_id = -1; | 94 | int window_id = -1; | |
92 | 95 | |||
93 | // トグルスイッム(1 ... On, -1 ... Off) | 96 | // トグルスイッム(1 ... On, -1 ... Off) | |
94 | int tgl_showpredefined = -1; // プãƒã‚°ãƒ©ãƒ 内定義物体ã®è¡¨ç¤º | 97 | int tgl_showpredefined = -1; // プãƒã‚°ãƒ©ãƒ 内定義物体ã®è¡¨ç¤º | |
95 | int tgl_shownormal = -1; // 法線表示 | 98 | int tgl_shownormal = -1; // 法線表示 | |
96 | int tgl_movelightonly = -1; // 一時的ãªå…‰æºæ“作 (å¿…ãš-1ã§åˆæœŸåŒ–) | 99 | int tgl_movelightonly = -1; // 一時的ãªå…‰æºæ“作 (å¿…ãš-1ã§åˆæœŸåŒ–) | |
97 | GLfloat mvmlocked[16]; // å…‰æºæ“作時ã«ãƒãƒƒã‚¯ã•ã‚ŒãŸMODELVIEW行列ã®å†…容 | 100 | GLfloat mvmlocked[16]; // å…‰æºæ“作時ã«ãƒãƒƒã‚¯ã•ã‚ŒãŸMODELVIEW行列ã®å†…容 | |
98 | int tgl_perspective = -1; // -1...直交投影, 1...é€è¦–投影 | 101 | int tgl_perspective = -1; // -1...直交投影, 1...é€è¦–投影 | |
99 | 102 | |||
100 | // オブジェクトモデル | 103 | // オブジェクトモデル | |
101 | struct ic2PATCH *firstpatchptr = NULL; | 104 | struct ic2PATCH *firstpatchptr = NULL; | |
102 | 105 | |||
103 | // ã‚ーæ“作記録 | 106 | // ã‚ーæ“作記録 | |
104 | struct ic2KEYINPUT *firstkeyinputptr = NULL; // リンクトリストã®å…ˆé | 107 | struct ic2KEYINPUT *firstkeyinputptr = NULL; // リンクトリストã®å…ˆé | |
105 | struct ic2KEYINPUT *latestkeyinputptr = NULL; // リンクトリストã®æœ€å¾Œå°¾ | 108 | struct ic2KEYINPUT *latestkeyinputptr = NULL; // リンクトリストã®æœ€å¾Œå°¾ | |
106 | int tgl_keyinput = -1; // -1 ... éžè¨˜éŒ², 1 ... è¨˜éŒ²ä¸ | 109 | int tgl_keyinput = -1; // -1 ... éžè¨˜éŒ², 1 ... è¨˜éŒ²ä¸ | |
107 | int tgl_playing = -1; // -1 ... éžå†ç”Ÿä¸, 1 ... å†ç”Ÿä¸ | 110 | int tgl_playing = -1; // -1 ... éžå†ç”Ÿä¸, 1 ... å†ç”Ÿä¸ | |
108 | int playinterval = 100; // å†ç”Ÿé–“éš” [ms] | 111 | int playinterval = 100; // å†ç”Ÿé–“éš” [ms] | |
109 | 112 | |||
113 | // アニメーションパラメータ | |||
114 | char *modelfile = "NotSpecified.txt"; | |||
115 | float delta_t = 0.1; // [unit] | |||
116 | float delta_r = 1.0; // [degree] | |||
117 | ||||
110 | // *********************************************************************** | 118 | // *********************************************************************** | |
111 | // key memory ************************************************************ | 119 | // key memory ************************************************************ | |
112 | 120 | |||
113 | // +++-------------------------------------------------- | 121 | // +++-------------------------------------------------- | |
114 | // æ–°ã—ã„ã‚ãƒ¼å…¥åŠ›æ§‹é€ ä½“(ic2KEYINPUT)ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿ã¨åˆæœŸåŒ– | 122 | // æ–°ã—ã„ã‚ãƒ¼å…¥åŠ›æ§‹é€ ä½“(ic2KEYINPUT)ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿ã¨åˆæœŸåŒ– | |
115 | // +++-------------------------------------------------- | 123 | // +++-------------------------------------------------- | |
116 | static struct ic2KEYINPUT *ic2_NewKEYINPUT (void) { | 124 | static struct ic2KEYINPUT *ic2_NewKEYINPUT (void) { | |
117 | struct ic2KEYINPUT *newkeyinput = NULL; | 125 | struct ic2KEYINPUT *newkeyinput = NULL; | |
118 | 126 | |||
119 | newkeyinput = (struct ic2KEYINPUT *)calloc(1, sizeof(struct ic2KEYINPUT)); | 127 | newkeyinput = (struct ic2KEYINPUT *)calloc(1, sizeof(struct ic2KEYINPUT)); | |
120 | return (newkeyinput); | 128 | return (newkeyinput); | |
121 | } | 129 | } | |
122 | 130 | |||
123 | // ----------------------------------------------------- | 131 | // ----------------------------------------------------- | |
124 | // ã‚ー1ã¤åˆ†ã®è¨˜éŒ² | 132 | // ã‚ー1ã¤åˆ†ã®è¨˜éŒ² | |
125 | // ----------------------------------------------------- | 133 | // ----------------------------------------------------- | |
126 | int ic2_LogKey(unsigned char key) { | 134 | int ic2_LogKey(unsigned char key) { | |
127 | struct ic2KEYINPUT *newkeyinput = NULL; // ã‚ãƒ¼å…¥åŠ›æ§‹é€ ä½“ãƒ˜ã®ãƒã‚¤ãƒ³ã‚¿ | 135 | struct ic2KEYINPUT *newkeyinput = NULL; // ã‚ãƒ¼å…¥åŠ›æ§‹é€ ä½“ãƒ˜ã®ãƒã‚¤ãƒ³ã‚¿ | |
128 | 136 | |||
129 | // (1) Logã®å¯å¦ | 137 | // (1) Logã®å¯å¦ | |
130 | if (tgl_keyinput != 1) | 138 | if (tgl_keyinput != 1) | |
131 | return 1; | 139 | return 1; | |
132 | 140 | |||
133 | // (2) メモリ確ä¿/下請㑠| 141 | // (2) メモリ確ä¿/下請㑠| |
134 | if ((newkeyinput = ic2_NewKEYINPUT()) == NULL) { | 142 | if ((newkeyinput = ic2_NewKEYINPUT()) == NULL) { | |
135 | printf("ic2_LogKey: Memory allocation failed.\n"); | 143 | printf("ic2_LogKey: Memory allocation failed.\n"); | |
136 | return 1; | 144 | return 1; | |
137 | } | 145 | } | |
138 | 146 | |||
139 | // (3) 値ã®ä¿å˜ | 147 | // (3) 値ã®ä¿å˜ | |
140 | newkeyinput->key = key; | 148 | newkeyinput->key = key; | |
141 | 149 | |||
142 | // (4) ic2KEYINPUTãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | 150 | // (4) ic2KEYINPUTãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | |
143 | // *newkeyinput ã‚’ ã‚ー入力集åˆã®æœ€å¾Œå°¾ã«æŒ¿å…¥ | 151 | // *newkeyinput ã‚’ ã‚ー入力集åˆã®æœ€å¾Œå°¾ã«æŒ¿å…¥ | |
144 | if (firstkeyinputptr == NULL) { | 152 | if (firstkeyinputptr == NULL) { | |
145 | firstkeyinputptr = newkeyinput; | 153 | firstkeyinputptr = newkeyinput; | |
146 | latestkeyinputptr = newkeyinput; | 154 | latestkeyinputptr = newkeyinput; | |
147 | } else { | 155 | } else { | |
148 | latestkeyinputptr->next = newkeyinput; | 156 | latestkeyinputptr->next = newkeyinput; | |
149 | latestkeyinputptr = newkeyinput; | 157 | latestkeyinputptr = newkeyinput; | |
150 | } | 158 | } | |
151 | return 0; | 159 | return 0; | |
152 | } | 160 | } | |
153 | 161 | |||
154 | // ----------------------------------------------------- | 162 | // ----------------------------------------------------- | |
155 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®è¡¨ç¤º | 163 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®è¡¨ç¤º | |
156 | // ----------------------------------------------------- | 164 | // ----------------------------------------------------- | |
157 | int ic2_PrintKEYINPUTList (void) { | 165 | int ic2_PrintKEYINPUTList (void) { | |
158 | struct ic2KEYINPUT *p; | 166 | struct ic2KEYINPUT *p; | |
159 | int np = 0; | 167 | int np = 0; | |
160 | 168 | |||
161 | printf("KEYINPUT: \n"); | 169 | printf("KEYINPUT: \n"); | |
162 | for (p = firstkeyinputptr; p != NULL; p = p->next) { | 170 | for (p = firstkeyinputptr; p != NULL; p = p->next) { | |
163 | np++; | 171 | np++; | |
164 | printf("%c", p->key); | 172 | printf("%c", p->key); | |
165 | } | 173 | } | |
166 | printf("\n"); | 174 | printf("\n"); | |
167 | printf("KEYINPUT: %d keys.\n", np); | 175 | printf("KEYINPUT: %d keys.\n", np); | |
168 | 176 | |||
169 | return np; | 177 | return np; | |
170 | } | 178 | } | |
171 | 179 | |||
172 | // ----------------------------------------------------- | 180 | // ----------------------------------------------------- | |
173 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®è§£æ”¾ | 181 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®è§£æ”¾ | |
174 | // ----------------------------------------------------- | 182 | // ----------------------------------------------------- | |
175 | int ic2_FreeKEYINPUTList (struct ic2KEYINPUT *keyinputptr) { | 183 | int ic2_FreeKEYINPUTList (struct ic2KEYINPUT *keyinputptr) { | |
176 | struct ic2KEYINPUT *nextptr; | 184 | struct ic2KEYINPUT *nextptr; | |
177 | int n = 0; | 185 | int n = 0; | |
178 | 186 | |||
179 | while (keyinputptr != NULL) { | 187 | while (keyinputptr != NULL) { | |
180 | nextptr = keyinputptr->next; | 188 | nextptr = keyinputptr->next; | |
181 | free(keyinputptr); | 189 | free(keyinputptr); | |
182 | keyinputptr = nextptr; | 190 | keyinputptr = nextptr; | |
183 | } | 191 | } | |
184 | 192 | |||
185 | return n; | 193 | return n; | |
186 | } | 194 | } | |
187 | 195 | |||
196 | // ----------------------------------------------------- | |||
197 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®ä¿å˜ | |||
198 | // ----------------------------------------------------- | |||
199 | int ic2_WriteKEYINPUTList (char *filename) { | |||
200 | FILE *fd; | |||
201 | struct ic2KEYINPUT *p; | |||
202 | int keynumber = 0; | |||
203 | ||||
204 | // ファイルåã®å˜åœ¨ã‚’ãƒã‚§ãƒƒã‚¯ (fool-proof) | |||
205 | if (filename == NULL) { | |||
206 | printf("Error: No file name for writing KEYINPUT is specified.\n"); | |||
207 | return -1; | |||
208 | } | |||
209 | ||||
210 | // Try to open it | |||
211 | fd = fopen(filename, "w"); | |||
212 | if (fd == NULL) { | |||
213 | printf("Error: Failed to open \"%s\" for writing.\n", filename); | |||
214 | return -2; | |||
215 | } | |||
216 | printf("Writing KEYINPUT list : \"%s\"\n", filename); | |||
217 | ||||
218 | fprintf(fd, "# KEYINPUT: \n"); | |||
219 | fprintf(fd, "# model : %s\n", modelfile); | |||
220 | fprintf(fd, "# delta_t[unit] : %g\n", delta_t); | |||
221 | fprintf(fd, "# delta_r[deg] : %g\n", delta_r); | |||
222 | for (p = firstkeyinputptr; p != NULL; p = p->next) { | |||
223 | keynumber++; | |||
224 | fprintf(fd, "%c", p->key); | |||
225 | } | |||
226 | fprintf(fd, "\n"); | |||
227 | fprintf(fd, "# KEYINPUT: %d keys.\n", keynumber); | |||
228 | fclose(fd); | |||
229 | printf("Writing KEYINPUT list: %d key-inputs are saved.\n", keynumber); | |||
230 | ||||
231 | return keynumber; | |||
232 | } | |||
233 | ||||
234 | // ----------------------------------------------------- | |||
235 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®èªè¾¼ | |||
236 | // ----------------------------------------------------- | |||
237 | int ic2_ReadKEYINPUTList (char *filename) { | |||
238 | FILE *fd; | |||
239 | char oneline[256]; // 1行分ã®ãƒãƒƒãƒ•ã‚¡,固定長ã«ã—ã¦ãŠãã¨sizeof()ãŒåˆ©ç”¨å¯èƒ½ | |||
240 | char firstword[256]; // コメント行ã‹ã©ã†ã‹ã®åˆ¤å®šç”¨ | |||
241 | int keynumber = 0; | |||
242 | char *cc; // key1ã¤åˆ†ã®èªã¿è¾¼ã¿ | |||
243 | //int bufcounter = 0; // oneline[]用ãƒãƒƒãƒ•ã‚¡ã‚«ã‚¦ãƒ³ã‚¿ | |||
244 | ||||
245 | // ファイルåã®å˜åœ¨ã‚’ãƒã‚§ãƒƒã‚¯ (fool-proof) | |||
246 | if (filename == NULL) { | |||
247 | printf("Error: No file name for writing KEYINPUT is specified.\n"); | |||
248 | return -1; | |||
249 | } | |||
250 | ||||
251 | // Try to open it | |||
252 | fd = fopen(filename, "r"); | |||
253 | if (fd == NULL) { | |||
254 | printf("Error: Failed to open \"%s\" for reading.\n", filename); | |||
255 | return -2; | |||
256 | } | |||
257 | printf("Reading KEYINPUT list : \"%s\"\n", filename); | |||
258 | ||||
259 | // ã“ã“ã¾ã§æ¥ã¦ç¾çŠ¶ã®KEYINPUTリストを解放・åˆæœŸåŒ– (å‚考:'S'ã‚ー) | |||
260 | ic2_FreeKEYINPUTList(firstkeyinputptr); | |||
261 | firstkeyinputptr = NULL; | |||
262 | latestkeyinputptr = NULL; | |||
263 | ||||
264 | // 強制的ã«ã‚ー登録ã§ãるよã†ã«ã™ã‚‹ | |||
265 | tgl_keyinput = 1; | |||
266 | ||||
267 | // 1行ãšã¤èªè¾¼ | |||
268 | while (fgets(oneline, sizeof(oneline), fd) != NULL) { | |||
269 | // ã‚‚ã—行内ã«ï¼‘æ–‡å—ã‚‚ãªã‘ã‚Œã°æ¬¡è¡Œã¸ | |||
270 | if (sscanf(oneline, "%256s", firstword) < 1) | |||
271 | continue; | |||
272 | // ã‚‚ã—å…ˆé ãŒ#ã§å§‹ã¾ã£ã¦ã„ã‚Œã°æ¬¡è¡Œã¸ | |||
273 | if (firstword[0] == '#') | |||
274 | continue; | |||
275 | ||||
276 | for (cc = oneline; *cc != '\0'; cc++) { | |||
277 | if (*cc != '\n') { | |||
278 | ic2_LogKey(*cc); | |||
279 | keynumber++; | |||
280 | } | |||
281 | } | |||
282 | } | |||
283 | fclose(fd); | |||
284 | printf("Reading KEYINPUT list: %d key-inputs are found.\n", keynumber); | |||
285 | ||||
286 | // ã‚ー登録終了(追記ã•ã›ãªã„) | |||
287 | tgl_keyinput = -1; | |||
288 | ||||
289 | return keynumber; | |||
290 | } | |||
291 | ||||
188 | // *********************************************************************** | 292 | // *********************************************************************** | |
189 | // read model ************************************************************ | 293 | // read model ************************************************************ | |
190 | 294 | |||
191 | // +++-------------------------------------------------- | 295 | // +++-------------------------------------------------- | |
192 | // 法線方å‘ベクトルã®è¨ˆç®— | 296 | // 法線方å‘ベクトルã®è¨ˆç®— | |
193 | // +++-------------------------------------------------- | 297 | // +++-------------------------------------------------- | |
194 | // glEnable(GL_NORMALIZE) ã§æ³•ç·šãƒ™ã‚¯ãƒˆãƒ«ã¯å¸¸ã«æ£è¦åŒ–ã—ã¦è§£é‡ˆã•ã›ã‚‹ã®ã§ã“ã“ã§ã¯æ£è¦åŒ–ä¸è¦ | 298 | // glEnable(GL_NORMALIZE) ã§æ³•ç·šãƒ™ã‚¯ãƒˆãƒ«ã¯å¸¸ã«æ£è¦åŒ–ã—ã¦è§£é‡ˆã•ã›ã‚‹ã®ã§ã“ã“ã§ã¯æ£è¦åŒ–ä¸è¦ | |
195 | // ï¼“é ‚ç‚¹ s-t-u , 2ベクトル st and su, 法線ベクトル n | 299 | // ï¼“é ‚ç‚¹ s-t-u , 2ベクトル st and su, 法線ベクトル n | |
196 | static void ic2_SetPatchNormal (struct ic2PATCH *p) { | 300 | static void ic2_SetPatchNormal (struct ic2PATCH *p) { | |
197 | struct ic2POINT oa, ob; | 301 | struct ic2POINT oa, ob; | |
198 | oa.x = p->t.x - p->s.x; | 302 | oa.x = p->t.x - p->s.x; | |
199 | oa.y = p->t.y - p->s.y; | 303 | oa.y = p->t.y - p->s.y; | |
200 | oa.z = p->t.z - p->s.z; | 304 | oa.z = p->t.z - p->s.z; | |
201 | ob.x = p->u.x - p->s.x; | 305 | ob.x = p->u.x - p->s.x; | |
202 | ob.y = p->u.y - p->s.y; | 306 | ob.y = p->u.y - p->s.y; | |
203 | ob.z = p->u.z - p->s.z; | 307 | ob.z = p->u.z - p->s.z; | |
204 | p->n.x = oa.y * ob.z - oa.z * ob.y; | 308 | p->n.x = oa.y * ob.z - oa.z * ob.y; | |
205 | p->n.y = oa.z * ob.x - oa.x * ob.z; | 309 | p->n.y = oa.z * ob.x - oa.x * ob.z; | |
206 | p->n.z = oa.x * ob.y - oa.y * ob.x; | 310 | p->n.z = oa.x * ob.y - oa.y * ob.x; | |
207 | } | 311 | } | |
208 | 312 | |||
209 | // +++-------------------------------------------------- | 313 | // +++-------------------------------------------------- | |
210 | // パッãƒã«é–¢ã™ã‚‹è¿½åŠ 属性ã®è¨ˆç®—(é‡å¿ƒã¨è¡¨ç¤ºç”¨é•·ã•è£œæ£é …) | 314 | // パッãƒã«é–¢ã™ã‚‹è¿½åŠ 属性ã®è¨ˆç®—(é‡å¿ƒã¨è¡¨ç¤ºç”¨é•·ã•è£œæ£é …) | |
211 | // +++-------------------------------------------------- | 315 | // +++-------------------------------------------------- | |
212 | static void ic2_SetPatchMoreAttributes (struct ic2PATCH *p) { | 316 | static void ic2_SetPatchMoreAttributes (struct ic2PATCH *p) { | |
213 | 317 | |||
214 | // パッãƒé‡å¿ƒã®è¨ˆç®— | 318 | // パッãƒé‡å¿ƒã®è¨ˆç®— | |
215 | p->b.x = (p->s.x + p->t.x + p->u.x) / 3; | 319 | p->b.x = (p->s.x + p->t.x + p->u.x) / 3; | |
216 | p->b.y = (p->s.y + p->t.y + p->u.y) / 3; | 320 | p->b.y = (p->s.y + p->t.y + p->u.y) / 3; | |
217 | p->b.z = (p->s.z + p->t.z + p->u.z) / 3; | 321 | p->b.z = (p->s.z + p->t.z + p->u.z) / 3; | |
218 | 322 | |||
219 | // 法線ベクトル表示時ã®é•·ã•è£œæ£é …ã®è¨ˆç®— | 323 | // 法線ベクトル表示時ã®é•·ã•è£œæ£é …ã®è¨ˆç®— | |
220 | p->l = sqrt(p->n.x * p->n.x + p->n.y * p->n.y + p->n.z * p->n.z); | 324 | p->l = sqrt(p->n.x * p->n.x + p->n.y * p->n.y + p->n.z * p->n.z); | |
221 | if (p->l != 0.0) { | 325 | if (p->l != 0.0) { | |
222 | p->l = sqrt(p->l) / p->l; | 326 | p->l = sqrt(p->l) / p->l; | |
223 | } | 327 | } | |
224 | } | 328 | } | |
225 | 329 | |||
226 | // +++-------------------------------------------------- | 330 | // +++-------------------------------------------------- | |
227 | // æ–°ã—ã„三角形パッãƒæ§‹é€ 体(ic2PATCH)ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿ã¨åˆæœŸåŒ– | 331 | // æ–°ã—ã„三角形パッãƒæ§‹é€ 体(ic2PATCH)ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿ã¨åˆæœŸåŒ– | |
228 | // +++-------------------------------------------------- | 332 | // +++-------------------------------------------------- | |
229 | static struct ic2PATCH *ic2_NewPATCH (void) { | 333 | static struct ic2PATCH *ic2_NewPATCH (void) { | |
230 | struct ic2PATCH *newpatch = NULL; | 334 | struct ic2PATCH *newpatch = NULL; | |
231 | 335 | |||
232 | newpatch = (struct ic2PATCH *)calloc(1, sizeof(struct ic2PATCH)); | 336 | newpatch = (struct ic2PATCH *)calloc(1, sizeof(struct ic2PATCH)); | |
233 | return (newpatch); | 337 | return (newpatch); | |
234 | } | 338 | } | |
235 | 339 | |||
236 | // +++-------------------------------------------------- | 340 | // +++-------------------------------------------------- | |
237 | // 三角形パッãƒæ§‹é€ 体(ic2PATCH)1ã¤åˆ†ã®èªã¿è¾¼ã¿ | 341 | // 三角形パッãƒæ§‹é€ 体(ic2PATCH)1ã¤åˆ†ã®èªã¿è¾¼ã¿ | |
238 | // +++-------------------------------------------------- | 342 | // +++-------------------------------------------------- | |
239 | static int ic2_InsertPATCH (struct ic2PATCH **firstpatchptr, char *onelinedata) { | 343 | static int ic2_InsertPATCH (struct ic2PATCH **firstpatchptr, char *onelinedata) { | |
240 | // (1) æ–‡å—列ã¸ã®ãƒã‚¤ãƒ³ã‚¿ã¯å˜åœ¨ã™ã‚‹ã‹ | 344 | // (1) æ–‡å—列ã¸ã®ãƒã‚¤ãƒ³ã‚¿ã¯å˜åœ¨ã™ã‚‹ã‹ | |
241 | // (2) メモリ確ä¿/下請㑠| 345 | // (2) メモリ確ä¿/下請㑠| |
242 | // (3) 値ã®èªã¿è¾¼ã¿ | 346 | // (3) 値ã®èªã¿è¾¼ã¿ | |
243 | // (4) ic2PATCHãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | 347 | // (4) ic2PATCHãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | |
244 | struct ic2PATCH *newpatch = NULL; // 三角形パッãƒæ§‹é€ 体ヘã®ãƒã‚¤ãƒ³ã‚¿ | 348 | struct ic2PATCH *newpatch = NULL; // 三角形パッãƒæ§‹é€ 体ヘã®ãƒã‚¤ãƒ³ã‚¿ | |
245 | int number_of_element = 0; // èªã¿è¾¼ã‚ãŸé …目数 | 349 | int number_of_element = 0; // èªã¿è¾¼ã‚ãŸé …目数 | |
246 | 350 | |||
247 | // (1) æ–‡å—列ã¸ã®ãƒã‚¤ãƒ³ã‚¿ã¯å˜åœ¨ã™ã‚‹ã‹ | 351 | // (1) æ–‡å—列ã¸ã®ãƒã‚¤ãƒ³ã‚¿ã¯å˜åœ¨ã™ã‚‹ã‹ | |
248 | if (onelinedata == NULL) return 1; | 352 | if (onelinedata == NULL) return 1; | |
249 | 353 | |||
250 | // (2) メモリ確ä¿/下請㑠| 354 | // (2) メモリ確ä¿/下請㑠| |
251 | if ((newpatch = ic2_NewPATCH()) == NULL) { | 355 | if ((newpatch = ic2_NewPATCH()) == NULL) { | |
252 | printf("ic2_InsertPATCH: Memory allocation failed.\n"); | 356 | printf("ic2_InsertPATCH: Memory allocation failed.\n"); | |
253 | return 2; | 357 | return 2; | |
254 | } | 358 | } | |
255 | 359 | |||
256 | // (3) 値ã®èªã¿è¾¼ã¿ | 360 | // (3) 値ã®èªã¿è¾¼ã¿ | |
257 | number_of_element = | 361 | number_of_element = | |
258 | sscanf(onelinedata, "%f %f %f %f %f %f %f %f %f %f %f %f", | 362 | sscanf(onelinedata, "%f %f %f %f %f %f %f %f %f %f %f %f", | |
259 | &newpatch->s.x, &newpatch->s.y, &newpatch->s.z, | 363 | &newpatch->s.x, &newpatch->s.y, &newpatch->s.z, | |
260 | &newpatch->t.x, &newpatch->t.y, &newpatch->t.z, | 364 | &newpatch->t.x, &newpatch->t.y, &newpatch->t.z, | |
261 | &newpatch->u.x, &newpatch->u.y, &newpatch->u.z, | 365 | &newpatch->u.x, &newpatch->u.y, &newpatch->u.z, | |
262 | &newpatch->c.r, &newpatch->c.g, &newpatch->c.b); | 366 | &newpatch->c.r, &newpatch->c.g, &newpatch->c.b); | |
263 | if (number_of_element != 12) { | 367 | if (number_of_element != 12) { | |
264 | printf("ic2_InsertPATCH: format error (%d elements found)\n", number_of_element); | 368 | printf("ic2_InsertPATCH: format error (%d elements found)\n", number_of_element); | |
265 | printf("ic2_InsertPATCH: \"%s\"\n", onelinedata); | 369 | printf("ic2_InsertPATCH: \"%s\"\n", onelinedata); | |
266 | free(newpatch); | 370 | free(newpatch); | |
267 | return 3; | 371 | return 3; | |
268 | } | 372 | } | |
269 | 373 | |||
270 | // (3.5) 法線ベクトルã®è¨ˆç®— | 374 | // (3.5) 法線ベクトルã®è¨ˆç®— | |
271 | ic2_SetPatchNormal(newpatch); | 375 | ic2_SetPatchNormal(newpatch); | |
272 | 376 | |||
273 | // (3.6) パッãƒã«é–¢ã™ã‚‹è¿½åŠ 属性ã®è¨ˆç®—(é‡å¿ƒã¨è¡¨ç¤ºç”¨é•·ã•è£œæ£é …) | 377 | // (3.6) パッãƒã«é–¢ã™ã‚‹è¿½åŠ 属性ã®è¨ˆç®—(é‡å¿ƒã¨è¡¨ç¤ºç”¨é•·ã•è£œæ£é …) | |
274 | ic2_SetPatchMoreAttributes(newpatch); | 378 | ic2_SetPatchMoreAttributes(newpatch); | |
275 | 379 | |||
276 | // (4) ic2PATCHãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | 380 | // (4) ic2PATCHãƒªã‚¹ãƒˆæ§‹é€ ã¸ã®çµ„ã¿è¾¼ã¿ | |
277 | // *newpatch ã‚’ 三角形パッãƒé›†åˆã®å…ˆé ã«æŒ¿å…¥ | 381 | // *newpatch ã‚’ 三角形パッãƒé›†åˆã®å…ˆé ã«æŒ¿å…¥ | |
278 | newpatch->next = *firstpatchptr; | 382 | newpatch->next = *firstpatchptr; | |
279 | *firstpatchptr = newpatch; | 383 | *firstpatchptr = newpatch; | |
280 | return 0; | 384 | return 0; | |
281 | } | 385 | } | |
282 | 386 | |||
283 | // +---------------------------------------------------- | 387 | // +---------------------------------------------------- | |
284 | // モデルã®ãƒ•ã‚¡ã‚¤ãƒ«ã‹ã‚‰ã®èªè¾¼ | 388 | // モデルã®ãƒ•ã‚¡ã‚¤ãƒ«ã‹ã‚‰ã®èªè¾¼ | |
285 | // +---------------------------------------------------- | 389 | // +---------------------------------------------------- | |
286 | // è¿”å€¤ï¼šè² ... エラー | 390 | // è¿”å€¤ï¼šè² ... エラー | |
287 | // 返値:ï¼ãªã„ã—æ£å€¤ ... èªã¿è¾¼ã¿ã«æˆåŠŸã—ãŸãƒ‘ッãƒæ•° | 391 | // 返値:ï¼ãªã„ã—æ£å€¤ ... èªã¿è¾¼ã¿ã«æˆåŠŸã—ãŸãƒ‘ッãƒæ•° | |
288 | int ic2_ReadModel(char *filename, struct ic2PATCH **firstpatchptr) { | 392 | int ic2_ReadModel(char *filename, struct ic2PATCH **firstpatchptr) { | |
289 | FILE *filetoopen = NULL; // A pointer to FILE structure | 393 | FILE *filetoopen = NULL; // A pointer to FILE structure | |
290 | char oneline[256]; // 1行分ã®ãƒãƒƒãƒ•ã‚¡,固定長ã«ã—ã¦ãŠãã¨sizeof()ãŒåˆ©ç”¨å¯èƒ½ | 394 | char oneline[256]; // 1行分ã®ãƒãƒƒãƒ•ã‚¡,固定長ã«ã—ã¦ãŠãã¨sizeof()ãŒåˆ©ç”¨å¯èƒ½ | |
291 | char firstword[256]; // コメント行ã‹ã©ã†ã‹ã®åˆ¤å®šç”¨ | 395 | char firstword[256]; // コメント行ã‹ã©ã†ã‹ã®åˆ¤å®šç”¨ | |
292 | int linenumber = 0; // ファイルä¸ã®è¡Œç•ªå· | 396 | int linenumber = 0; // ファイルä¸ã®è¡Œç•ªå· | |
293 | int patchnumber = 0; // パッãƒæ•° | 397 | int patchnumber = 0; // パッãƒæ•° | |
294 | 398 | |||
295 | // We need at least one option to indicate a file to open | 399 | // We need at least one option to indicate a file to open | |
296 | if (filename == NULL) { | 400 | if (filename == NULL) { | |
297 | printf("Error: You need to specify a one file to open.\n"); | 401 | printf("Error: You need to specify a one file to open.\n"); | |
298 | return -1; | 402 | return -1; | |
299 | } | 403 | } | |
300 | 404 | |||
301 | // Try to open it | 405 | // Try to open it | |
302 | filetoopen = fopen(filename, "r"); | 406 | filetoopen = fopen(filename, "r"); | |
303 | if (filetoopen == NULL) { | 407 | if (filetoopen == NULL) { | |
304 | printf("Error: Failed to open/read \"%s\".\n", filename); | 408 | printf("Error: Failed to open/read \"%s\".\n", filename); | |
305 | return -2; | 409 | return -2; | |
306 | } | 410 | } | |
307 | printf("Reading model from \"%s\"\n", filename); | 411 | printf("Reading model from \"%s\"\n", filename); | |
308 | 412 | |||
309 | // 1行ãšã¤èªè¾¼ | 413 | // 1行ãšã¤èªè¾¼ | |
310 | while (fgets(oneline, sizeof(oneline), filetoopen) != NULL) { | 414 | while (fgets(oneline, sizeof(oneline), filetoopen) != NULL) { | |
311 | linenumber++; | 415 | linenumber++; | |
312 | 416 | |||
313 | // ã‚‚ã—行内ã«ï¼‘æ–‡å—ã‚‚ãªã‘ã‚Œã°ï¼ˆï¼‘å˜èªžã‚‚ãªã‘ã‚Œã°ï¼‰æ¬¡è¡Œã¸ | 417 | // ã‚‚ã—行内ã«ï¼‘æ–‡å—ã‚‚ãªã‘ã‚Œã°ï¼ˆï¼‘å˜èªžã‚‚ãªã‘ã‚Œã°ï¼‰æ¬¡è¡Œã¸ | |
314 | if (sscanf(oneline, "%256s", firstword) < 1) | 418 | if (sscanf(oneline, "%256s", firstword) < 1) | |
315 | continue; | 419 | continue; | |
316 | // ã‚‚ã—å…ˆé ãŒ#ã§å§‹ã¾ã£ã¦ã„ã‚Œã°æ¬¡è¡Œã¸ | 420 | // ã‚‚ã—å…ˆé ãŒ#ã§å§‹ã¾ã£ã¦ã„ã‚Œã°æ¬¡è¡Œã¸ | |
317 | if (firstword[0] == '#') | 421 | if (firstword[0] == '#') | |
318 | continue; | 422 | continue; | |
319 | // ä»–ã®ã‚¨ãƒ©ãƒ¼ãƒˆãƒ©ãƒƒãƒ— | 423 | // ä»–ã®ã‚¨ãƒ©ãƒ¼ãƒˆãƒ©ãƒƒãƒ— | |
320 | if (0) { | 424 | if (0) { | |
321 | printf("Skip(line=%d): %s\n", linenumber, oneline); | 425 | printf("Skip(line=%d): %s\n", linenumber, oneline); | |
322 | continue; | 426 | continue; | |
323 | } | 427 | } | |
324 | 428 | |||
325 | if (ic2_InsertPATCH(firstpatchptr, oneline)) { | 429 | if (ic2_InsertPATCH(firstpatchptr, oneline)) { | |
326 | printf("Model reading is interrupted.\n"); | 430 | printf("Model reading is interrupted.\n"); | |
327 | break; | 431 | break; | |
328 | } | 432 | } | |
329 | patchnumber++; | 433 | patchnumber++; | |
330 | } | 434 | } | |
331 | 435 | |||
332 | // And close it | 436 | // And close it | |
333 | if (fclose(filetoopen) != 0) { | 437 | if (fclose(filetoopen) != 0) { | |
334 | printf("Error: Failed to close \"%s\".\n", filename); | 438 | printf("Error: Failed to close \"%s\".\n", filename); | |
335 | // error, but we get data anyway... | 439 | // error, but we get data anyway... | |
336 | } | 440 | } | |
337 | 441 | |||
338 | printf("Finish reading the model (%d patches).\n", patchnumber); | 442 | printf("Finish reading the model (%d patches).\n", patchnumber); | |
443 | modelfile = filename; | |||
339 | return patchnumber; | 444 | return patchnumber; | |
340 | } | 445 | } | |
341 | 446 | |||
342 | // ----------------------------------------------------- | 447 | // ----------------------------------------------------- | |
343 | // 三角形パッãƒæ§‹é€ 体(ic2PATCH)リストã®è¡¨ç¤º | 448 | // 三角形パッãƒæ§‹é€ 体(ic2PATCH)リストã®è¡¨ç¤º | |
344 | // ----------------------------------------------------- | 449 | // ----------------------------------------------------- | |
345 | int ic2_PrintPATCHList (struct ic2PATCH *firstpatchptr) { | 450 | int ic2_PrintPATCHList (struct ic2PATCH *firstpatchptr) { | |
346 | struct ic2PATCH *p; | 451 | struct ic2PATCH *p; | |
347 | int np = 0; | 452 | int np = 0; | |
348 | 453 | |||
349 | for (p = firstpatchptr; p != NULL; p = p->next) { | 454 | for (p = firstpatchptr; p != NULL; p = p->next) { | |
350 | np++; | 455 | np++; | |
351 | printf("PATCH: (%g, %g, %g), (%g, %g, %g), (%g, %g, %g), rgb=[%g, %g, %g] ", | 456 | printf("PATCH: (%g, %g, %g), (%g, %g, %g), (%g, %g, %g), rgb=[%g, %g, %g] ", | |
352 | p->s.x, p->s.y, p->s.z, | 457 | p->s.x, p->s.y, p->s.z, | |
353 | p->t.x, p->t.y, p->t.z, | 458 | p->t.x, p->t.y, p->t.z, | |
354 | p->u.x, p->u.y, p->u.z, | 459 | p->u.x, p->u.y, p->u.z, | |
355 | p->c.r, p->c.g, p->c.b); | 460 | p->c.r, p->c.g, p->c.b); | |
356 | printf("n=(%g, %g, %g), b=(%g, %g, %g), l=%g\n", | 461 | printf("n=(%g, %g, %g), b=(%g, %g, %g), l=%g\n", | |
357 | p->n.x, p->n.y, p->n.z, | 462 | p->n.x, p->n.y, p->n.z, | |
358 | p->b.x, p->b.y, p->b.z, | 463 | p->b.x, p->b.y, p->b.z, | |
359 | p->l); | 464 | p->l); | |
360 | } | 465 | } | |
361 | 466 | |||
362 | return np; | 467 | return np; | |
363 | } | 468 | } | |
364 | 469 | |||
365 | // *********************************************************************** | 470 | // *********************************************************************** | |
366 | // gl utilitiess ********************************************************* | 471 | // gl utilitiess ********************************************************* | |
367 | 472 | |||
368 | // +---------------------------------------------------- | 473 | // +---------------------------------------------------- | |
369 | // MODELVIEW Matrix 㨠PROJECTION を表示ã™ã‚‹ | 474 | // MODELVIEW Matrix 㨠PROJECTION を表示ã™ã‚‹ | |
370 | // +---------------------------------------------------- | 475 | // +---------------------------------------------------- | |
371 | void ic2_ShowMATRIX (char *str) { | 476 | void ic2_ShowMATRIX (char *str) { | |
372 | GLfloat m[16]; // GL_MODELVIEW matrix | 477 | GLfloat m[16]; // GL_MODELVIEW matrix | |
373 | GLfloat p[16]; // GL_PROJECTION matrix | 478 | GLfloat p[16]; // GL_PROJECTION matrix | |
374 | 479 | |||
375 | glGetFloatv(GL_MODELVIEW_MATRIX , m); // MODELVIEWã®ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—matrixã‚’mã«ã‚³ãƒ”ー | 480 | glGetFloatv(GL_MODELVIEW_MATRIX , m); // MODELVIEWã®ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—matrixã‚’mã«ã‚³ãƒ”ー | |
376 | glGetFloatv(GL_PROJECTION_MATRIX, p); // PROJECTIONã®ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—matrixã‚’pã«ã‚³ãƒ”ー | 481 | glGetFloatv(GL_PROJECTION_MATRIX, p); // PROJECTIONã®ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—matrixã‚’pã«ã‚³ãƒ”ー | |
377 | if (str != NULL) printf("<< %s >>\n", str); | 482 | if (str != NULL) printf("<< %s >>\n", str); | |
378 | printf("MODELVIEW Matrix PROJECTION Matrix\n"); | 483 | printf("MODELVIEW Matrix PROJECTION Matrix\n"); | |
379 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | 484 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | |
380 | m[ 0], m[ 4], m[ 8], m[12], p[ 0], p[ 4], p[ 8], p[12]); | 485 | m[ 0], m[ 4], m[ 8], m[12], p[ 0], p[ 4], p[ 8], p[12]); | |
381 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | 486 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | |
382 | m[ 1], m[ 5], m[ 9], m[13], p[ 1], p[ 5], p[ 9], p[13]); | 487 | m[ 1], m[ 5], m[ 9], m[13], p[ 1], p[ 5], p[ 9], p[13]); | |
383 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | 488 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | |
384 | m[ 2], m[ 6], m[10], m[14], p[ 2], p[ 6], p[10], p[14]); | 489 | m[ 2], m[ 6], m[10], m[14], p[ 2], p[ 6], p[10], p[14]); | |
385 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | 490 | printf("%7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f %7.3f\n", | |
386 | m[ 3], m[ 7], m[11], m[15], p[ 3], p[ 7], p[11], p[15]); | 491 | m[ 3], m[ 7], m[11], m[15], p[ 3], p[ 7], p[11], p[15]); | |
387 | } | 492 | } | |
388 | 493 | |||
389 | // *********************************************************************** | 494 | // *********************************************************************** | |
390 | // objects_embeded ******************************************************* | 495 | // objects_embeded ******************************************************* | |
391 | 496 | |||
392 | // +---------------------------------------------------- | 497 | // +---------------------------------------------------- | |
393 | // æ£æ–¹å½¢ã‚’æã | 498 | // æ£æ–¹å½¢ã‚’æã | |
394 | // +---------------------------------------------------- | 499 | // +---------------------------------------------------- | |
395 | void ic2_FigSquare (float s) { | 500 | void ic2_FigSquare (float s) { | |
396 | glDisable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’一旦切る | 501 | glDisable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’一旦切る | |
397 | 502 | |||
398 | // æ£æ–¹å½¢ï¼ˆZ=0ã®å¹³é¢å†…ã€+/- 0.9) | 503 | // æ£æ–¹å½¢ï¼ˆZ=0ã®å¹³é¢å†…ã€+/- 0.9) | |
399 | glBegin(GL_LINE_LOOP); { | 504 | glBegin(GL_LINE_LOOP); { | |
400 | glColor3f(1.0, 1.0, 1.0); | 505 | glColor3f(1.0, 1.0, 1.0); | |
401 | glVertex3f(s * -1, s * -1, 0.0); | 506 | glVertex3f(s * -1, s * -1, 0.0); | |
402 | glVertex3f(s * +1, s * -1, 0.0); | 507 | glVertex3f(s * +1, s * -1, 0.0); | |
403 | glVertex3f(s * +1, s * +1, 0.0); | 508 | glVertex3f(s * +1, s * +1, 0.0); | |
404 | glVertex3f(s * -1, s * +1, 0.0); | 509 | glVertex3f(s * -1, s * +1, 0.0); | |
405 | } glEnd(); | 510 | } glEnd(); | |
406 | 511 | |||
407 | // 3軸 | 512 | // 3軸 | |
408 | glBegin(GL_LINES); { | 513 | glBegin(GL_LINES); { | |
409 | glColor3f(1.0, 0.5, 0.5); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.85, 0.0, 0.0); // X (red) | 514 | glColor3f(1.0, 0.5, 0.5); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.85, 0.0, 0.0); // X (red) | |
410 | glColor3f(0.5, 1.0, 0.5); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.0, 0.70, 0.0); // Y (green) | 515 | glColor3f(0.5, 1.0, 0.5); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.0, 0.70, 0.0); // Y (green) | |
411 | glColor3f(0.5, 0.5, 1.0); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.0, 0.0, 1.0); // Z (blue) | 516 | glColor3f(0.5, 0.5, 1.0); glVertex3f(0.0, 0.0, 0.0); glVertex3f(0.0, 0.0, 1.0); // Z (blue) | |
412 | } glEnd(); | 517 | } glEnd(); | |
413 | 518 | |||
414 | glEnable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’開始ã™ã‚‹ | 519 | glEnable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’開始ã™ã‚‹ | |
415 | } | 520 | } | |
416 | 521 | |||
417 | // +---------------------------------------------------- | 522 | // +---------------------------------------------------- | |
418 | // ティーãƒãƒƒãƒˆã‚’æã (glutã®ä½œã‚Šä»˜ã‘関数ã®ï¼‘ã¤) | 523 | // ティーãƒãƒƒãƒˆã‚’æã (glutã®ä½œã‚Šä»˜ã‘関数ã®ï¼‘ã¤) | |
419 | // +---------------------------------------------------- | 524 | // +---------------------------------------------------- | |
420 | void ic2_FigSolidTeapot (float s) { | 525 | void ic2_FigSolidTeapot (float s) { | |
421 | GLfloat obj_ref[] = {1.0, 1.0, 0.3, 1.0}; // teapotã®è‰²æƒ…å ± (DIFFUSE用) | 526 | GLfloat obj_ref[] = {1.0, 1.0, 0.3, 1.0}; // teapotã®è‰²æƒ…å ± (DIFFUSE用) | |
422 | GLfloat obj_shn[] = {10.0}; // teapotã®è‰²æƒ…å ± (SHININESS用) | 527 | GLfloat obj_shn[] = {10.0}; // teapotã®è‰²æƒ…å ± (SHININESS用) | |
423 | 528 | |||
424 | // 色ã®è¨å®š | 529 | // 色ã®è¨å®š | |
425 | glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, obj_ref); | 530 | glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, obj_ref); | |
426 | glMaterialfv(GL_FRONT, GL_SHININESS, obj_shn); | 531 | glMaterialfv(GL_FRONT, GL_SHININESS, obj_shn); | |
427 | 532 | |||
428 | glutSolidTeapot(s); | 533 | glutSolidTeapot(s); | |
429 | } | 534 | } | |
430 | 535 | |||
431 | // *********************************************************************** | 536 | // *********************************************************************** | |
432 | // objects_model ********************************************************* | 537 | // objects_model ********************************************************* | |
433 | 538 | |||
434 | // +---------------------------------------------------- | 539 | // +---------------------------------------------------- | |
435 | // ファイルã‹ã‚‰ã®ç‰©ä½“を表示 | 540 | // ファイルã‹ã‚‰ã®ç‰©ä½“を表示 | |
436 | // +---------------------------------------------------- | 541 | // +---------------------------------------------------- | |
437 | int ic2_DrawModel (struct ic2PATCH *firstpatchptr) { | 542 | int ic2_DrawModel (struct ic2PATCH *firstpatchptr) { | |
438 | struct ic2PATCH *p; // パッãƒæ§‹é€ 体ã¸ã®ãƒã‚¤ãƒ³ã‚¿ | 543 | struct ic2PATCH *p; // パッãƒæ§‹é€ 体ã¸ã®ãƒã‚¤ãƒ³ã‚¿ | |
439 | 544 | |||
440 | for (p = firstpatchptr; p != NULL; p = p->next) { | 545 | for (p = firstpatchptr; p != NULL; p = p->next) { | |
441 | GLfloat v[4]; | 546 | GLfloat v[4]; | |
442 | 547 | |||
443 | // é¢ã®è‰²è¦ç´ (å射特性)をDiffuseã¨Specularã«ã¤ã„ã¦æŒ‡ç¤º | 548 | // é¢ã®è‰²è¦ç´ (å射特性)をDiffuseã¨Specularã«ã¤ã„ã¦æŒ‡ç¤º | |
444 | v[0] = p->c.r; v[1] = p->c.g; v[2] = p->c.b; v[3] = 1.0; | 549 | v[0] = p->c.r; v[1] = p->c.g; v[2] = p->c.b; v[3] = 1.0; | |
445 | glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, v); | 550 | glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, v); | |
446 | v[0] = 10.0; | 551 | v[0] = 10.0; | |
447 | glMaterialfv(GL_FRONT, GL_SHININESS, v); | 552 | glMaterialfv(GL_FRONT, GL_SHININESS, v); | |
448 | 553 | |||
449 | // é¢ã®æ³•ç·šã‚’指示 | 554 | // é¢ã®æ³•ç·šã‚’指示 | |
450 | glNormal3f(p->n.x, p->n.y, p->n.z); | 555 | glNormal3f(p->n.x, p->n.y, p->n.z); | |
451 | 556 | |||
452 | // é¢ã‚’構æˆã™ã‚‹ï¼“é ‚ç‚¹ã‚’æŒ‡ç¤º | 557 | // é¢ã‚’構æˆã™ã‚‹ï¼“é ‚ç‚¹ã‚’æŒ‡ç¤º | |
453 | glBegin(GL_TRIANGLES); { | 558 | glBegin(GL_TRIANGLES); { | |
454 | glVertex3f(p->s.x, p->s.y, p->s.z); | 559 | glVertex3f(p->s.x, p->s.y, p->s.z); | |
455 | glVertex3f(p->t.x, p->t.y, p->t.z); | 560 | glVertex3f(p->t.x, p->t.y, p->t.z); | |
456 | glVertex3f(p->u.x, p->u.y, p->u.z); | 561 | glVertex3f(p->u.x, p->u.y, p->u.z); | |
457 | } glEnd(); | 562 | } glEnd(); | |
458 | 563 | |||
459 | // 法線ã®è¡¨ç¤º | 564 | // 法線ã®è¡¨ç¤º | |
460 | if (tgl_shownormal == 1) { | 565 | if (tgl_shownormal == 1) { | |
461 | glDisable(GL_LIGHTING); | 566 | glDisable(GL_LIGHTING); | |
462 | glColor3f(0.3, 1.0, 0.4); | 567 | glColor3f(0.3, 1.0, 0.4); | |
463 | glBegin(GL_LINES); { | 568 | glBegin(GL_LINES); { | |
464 | glVertex3f(p->b.x, p->b.y, p->b.z); | 569 | glVertex3f(p->b.x, p->b.y, p->b.z); | |
465 | glVertex3f(p->b.x + p->l * p->n.x, p->b.y + p->l * p->n.y, p->b.z + p->l * p->n.z); | 570 | glVertex3f(p->b.x + p->l * p->n.x, p->b.y + p->l * p->n.y, p->b.z + p->l * p->n.z); | |
466 | } glEnd(); | 571 | } glEnd(); | |
467 | glEnable(GL_LIGHTING); | 572 | glEnable(GL_LIGHTING); | |
468 | } | 573 | } | |
469 | 574 | |||
470 | } | 575 | } | |
471 | return 0; | 576 | return 0; | |
472 | } | 577 | } | |
473 | 578 | |||
474 | // *********************************************************************** | 579 | // *********************************************************************** | |
475 | // lighting ************************************************************** | 580 | // lighting ************************************************************** | |
476 | 581 | |||
477 | // +---------------------------------------------------- | 582 | // +---------------------------------------------------- | |
478 | // å…‰æºã‚’ç”¨æ„ | 583 | // å…‰æºã‚’ç”¨æ„ | |
479 | // +---------------------------------------------------- | 584 | // +---------------------------------------------------- | |
480 | // X Y Z Diff(R,G,B) Spec(R,G,B) | 585 | // X Y Z Diff(R,G,B) Spec(R,G,B) | |
481 | // 1.0 2.0 3.0 0.2 0.2 0.2 0.4 0.4 0.4 | 586 | // 1.0 2.0 3.0 0.2 0.2 0.2 0.4 0.4 0.4 | |
482 | // -1.0 2.0 3.0 0.4 0.4 0.4 0.4 0.4 0.4 | 587 | // -1.0 2.0 3.0 0.4 0.4 0.4 0.4 0.4 0.4 | |
483 | // 0.0 4.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 | 588 | // 0.0 4.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 | |
484 | void ic2_LightSetA (void) { | 589 | void ic2_LightSetA (void) { | |
485 | static int initflag = 0; | 590 | static int initflag = 0; | |
486 | 591 | |||
487 | if (initflag == 0) { | 592 | if (initflag == 0) { | |
488 | glEnable(GL_DEPTH_TEST); // デプスãƒãƒƒãƒ•ã‚¡ã«ã‚ˆã‚‹æ画を行ㆠ| 593 | glEnable(GL_DEPTH_TEST); // デプスãƒãƒƒãƒ•ã‚¡ã«ã‚ˆã‚‹æ画を行ㆠ| |
489 | glEnable(GL_NORMALIZE); // 法線ベクトルを常ã«æ£è¦åŒ–ã—ã¦è§£é‡ˆã•ã›ã‚‹ | 594 | glEnable(GL_NORMALIZE); // 法線ベクトルを常ã«æ£è¦åŒ–ã—ã¦è§£é‡ˆã•ã›ã‚‹ | |
490 | glEnable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’開始ã™ã‚‹ | 595 | glEnable(GL_LIGHTING); // å…‰æºã«ã‚ˆã‚‹ã‚·ã‚§ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã‚’開始ã™ã‚‹ | |
491 | glEnable(GL_LIGHT0); // LIGHT0 を利用 | 596 | glEnable(GL_LIGHT0); // LIGHT0 を利用 | |
492 | glEnable(GL_LIGHT1); // LIGHT1 を利用 | 597 | glEnable(GL_LIGHT1); // LIGHT1 を利用 | |
493 | glEnable(GL_LIGHT2); // LIGHT2 を利用 | 598 | glEnable(GL_LIGHT2); // LIGHT2 を利用 | |
494 | initflag = 1; | 599 | initflag = 1; | |
495 | } | 600 | } | |
496 | 601 | |||
497 | GLfloat val[4]; | 602 | GLfloat val[4]; | |
498 | 603 | |||
499 | val[0] = 1.0; val[1] = 2.0; val[2] = 3.0; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_POSITION, val); | 604 | val[0] = 1.0; val[1] = 2.0; val[2] = 3.0; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_POSITION, val); | |
500 | val[0] = 0.2; val[1] = 0.2; val[2] = 0.2; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_DIFFUSE, val); | 605 | val[0] = 0.2; val[1] = 0.2; val[2] = 0.2; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_DIFFUSE, val); | |
501 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_SPECULAR, val); | 606 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT0, GL_SPECULAR, val); | |
502 | 607 | |||
503 | val[0] = -1.0; val[1] = 2.0; val[2] = 3.0; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_POSITION, val); | 608 | val[0] = -1.0; val[1] = 2.0; val[2] = 3.0; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_POSITION, val); | |
504 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_DIFFUSE, val); | 609 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_DIFFUSE, val); | |
505 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_SPECULAR, val); | 610 | val[0] = 0.4; val[1] = 0.4; val[2] = 0.4; val[3] = 1.0; glLightfv(GL_LIGHT1, GL_SPECULAR, val); | |
506 | 611 | |||
507 | val[0] = 0.0; val[1] = 4.0; val[2] = 0.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_POSITION, val); | 612 | val[0] = 0.0; val[1] = 4.0; val[2] = 0.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_POSITION, val); | |
508 | val[0] = 1.0; val[1] = 1.0; val[2] = 1.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_DIFFUSE, val); | 613 | val[0] = 1.0; val[1] = 1.0; val[2] = 1.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_DIFFUSE, val); | |
509 | val[0] = 1.0; val[1] = 1.0; val[2] = 1.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_SPECULAR, val); | 614 | val[0] = 1.0; val[1] = 1.0; val[2] = 1.0; val[3] = 1.0; glLightfv(GL_LIGHT2, GL_SPECULAR, val); | |
510 | } | 615 | } | |
511 | 616 | |||
512 | // *********************************************************************** | 617 | // *********************************************************************** | |
513 | // camera work *********************************************************** | 618 | // camera work *********************************************************** | |
514 | 619 | |||
515 | // +---------------------------------------------------- | 620 | // +---------------------------------------------------- | |
516 | // カメラã®æŠ•å½±è¡Œåˆ—ã‚’è¨å®š | 621 | // カメラã®æŠ•å½±è¡Œåˆ—ã‚’è¨å®š | |
517 | // +---------------------------------------------------- | 622 | // +---------------------------------------------------- | |
518 | // 利用ã™ã‚‹å¤§åŸŸå¤‰æ•°ï¼š window_w, window_h | 623 | // 利用ã™ã‚‹å¤§åŸŸå¤‰æ•°ï¼š window_w, window_h | |
519 | // window_w/window_hã®å¤‰åŒ–ã«å¯¾ã—ã¦ã€ç‰©ä½“ã®è¦‹ã‹ã‘ã®å¤§ãã•ãŒå¤‰ã‚らãªã„よã†ã«æç”» | 624 | // window_w/window_hã®å¤‰åŒ–ã«å¯¾ã—ã¦ã€ç‰©ä½“ã®è¦‹ã‹ã‘ã®å¤§ãã•ãŒå¤‰ã‚らãªã„よã†ã«æç”» | |
520 | // → ortho_unit ãŒé‡è¦ï¼ | 625 | // → ortho_unit ãŒé‡è¦ï¼ | |
521 | // | 626 | // | |
522 | void ic2_SetUpCamera_Ortho (void) { | 627 | void ic2_SetUpCamera_Ortho (void) { | |
523 | float wlimit, hlimit; | 628 | float wlimit, hlimit; | |
524 | wlimit = (window_w/2) / ortho_unit; | 629 | wlimit = (window_w/2) / ortho_unit; | |
525 | hlimit = (window_h/2) / ortho_unit; | 630 | hlimit = (window_h/2) / ortho_unit; | |
526 | 631 | |||
527 | // glOrtho(左端, å³ç«¯, 下端, 上端, 近接å´ã‚¯ãƒªãƒƒãƒ”ングé¢, é æ–¹å´ã‚¯ãƒªãƒƒãƒ”ングé¢) | 632 | // glOrtho(左端, å³ç«¯, 下端, 上端, 近接å´ã‚¯ãƒªãƒƒãƒ”ングé¢, é æ–¹å´ã‚¯ãƒªãƒƒãƒ”ングé¢) | |
528 | glMatrixMode(GL_PROJECTION); | 633 | glMatrixMode(GL_PROJECTION); | |
529 | glLoadIdentity(); // 毎フレームå†è¨å®šã™ã‚‹ã®ã§PROJECTION行列スタックトップã®åˆæœŸåŒ–å¿…è¦ | 634 | glLoadIdentity(); // 毎フレームå†è¨å®šã™ã‚‹ã®ã§PROJECTION行列スタックトップã®åˆæœŸåŒ–å¿…è¦ | |
530 | glOrtho(-wlimit, wlimit, -hlimit, hlimit, -1.0, 1.0); | 635 | glOrtho(-wlimit, wlimit, -hlimit, hlimit, -1.0, 1.0); | |
531 | 636 | |||
532 | // 通常ã¯MODELVIEWã‚’æ“作ã™ã‚‹ã®ã§å¿µã®ãŸã‚å…ƒã«æˆ»ã—ã¦ãŠã. | 637 | // 通常ã¯MODELVIEWã‚’æ“作ã™ã‚‹ã®ã§å¿µã®ãŸã‚å…ƒã«æˆ»ã—ã¦ãŠã. | |
533 | glMatrixMode(GL_MODELVIEW); | 638 | glMatrixMode(GL_MODELVIEW); | |
534 | } | 639 | } | |
535 | 640 | |||
536 | // +---------------------------------------------------- | 641 | // +---------------------------------------------------- | |
537 | // カメラã®æŠ•å½±è¡Œåˆ—ã‚’è¨å®š | 642 | // カメラã®æŠ•å½±è¡Œåˆ—ã‚’è¨å®š | |
538 | // +---------------------------------------------------- | 643 | // +---------------------------------------------------- | |
539 | // 利用ã™ã‚‹å¤§åŸŸå¤‰æ•°ï¼š window_w, window_h, camera_f | 644 | // 利用ã™ã‚‹å¤§åŸŸå¤‰æ•°ï¼š window_w, window_h, camera_f | |
540 | // window_w/window_hã®å¤‰åŒ–ã«å¯¾ã—ã¦ã€ç‰©ä½“ã®è¦‹ã‹ã‘ã®å¤§ãã•ãŒå¤‰ã‚らãªã„よã†ã«æç”» | 645 | // window_w/window_hã®å¤‰åŒ–ã«å¯¾ã—ã¦ã€ç‰©ä½“ã®è¦‹ã‹ã‘ã®å¤§ãã•ãŒå¤‰ã‚らãªã„よã†ã«æç”» | |
541 | // → 焦点è·é›¢ camera_f ãŒé‡è¦ï¼ | 646 | // → 焦点è·é›¢ camera_f ãŒé‡è¦ï¼ | |
542 | // 注: glViewport()ã®è¨å®šã«ã‚ˆã‚Šæœ¬æ¼”ç¿’ã§ã¯æ’®åƒé¢ï¼ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®å¤§ãã• | 647 | // 注: glViewport()ã®è¨å®šã«ã‚ˆã‚Šæœ¬æ¼”ç¿’ã§ã¯æ’®åƒé¢ï¼ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®å¤§ãã• | |
543 | // | 648 | // | |
544 | void ic2_SetUpCamera_Perspective (void) { | 649 | void ic2_SetUpCamera_Perspective (void) { | |
545 | float fovy; // 垂直画角 | 650 | float fovy; // 垂直画角 | |
546 | float aspect; // æ’®åƒé¢ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯” | 651 | float aspect; // æ’®åƒé¢ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯” | |
547 | float depth_near_end = 0.1; // è¿‘è·é›¢é™ç•Œ | 652 | float depth_near_end = 0.1; // è¿‘è·é›¢é™ç•Œ | |
548 | float depth_far_end = 100.0; // é è·é›¢é™ç•Œ | 653 | float depth_far_end = 100.0; // é è·é›¢é™ç•Œ | |
549 | 654 | |||
550 | // é€è¦–投影をè¦å®šã™ã‚‹ãŸã‚ã®ãƒ‘ラメータ | 655 | // é€è¦–投影をè¦å®šã™ã‚‹ãŸã‚ã®ãƒ‘ラメータ | |
551 | fovy = atan((window_h/2.0)/camera_f)*2.0*(180.0/M_PI); | 656 | fovy = atan((window_h/2.0)/camera_f)*2.0*(180.0/M_PI); | |
552 | aspect = (float)window_w/window_h; | 657 | aspect = (float)window_w/window_h; | |
553 | depth_near_end = 0.1; | 658 | depth_near_end = 0.1; | |
554 | depth_far_end = 100.0; | 659 | depth_far_end = 100.0; | |
555 | 660 | |||
556 | // é€è¦–投影行列 | 661 | // é€è¦–投影行列 | |
557 | glMatrixMode(GL_PROJECTION); | 662 | glMatrixMode(GL_PROJECTION); | |
558 | glLoadIdentity(); // 毎フレームå†è¨å®šã™ã‚‹ã®ã§PROJECTION行列スタックトップã®åˆæœŸåŒ–å¿…è¦ | 663 | glLoadIdentity(); // 毎フレームå†è¨å®šã™ã‚‹ã®ã§PROJECTION行列スタックトップã®åˆæœŸåŒ–å¿…è¦ | |
559 | gluPerspective(fovy, aspect, depth_near_end, depth_far_end); | 664 | gluPerspective(fovy, aspect, depth_near_end, depth_far_end); | |
560 | 665 | |||
561 | // 通常ã¯MODELVIEWã‚’æ“作ã™ã‚‹ã®ã§å¿µã®ãŸã‚å…ƒã«æˆ»ã—ã¦ãŠã. | 666 | // 通常ã¯MODELVIEWã‚’æ“作ã™ã‚‹ã®ã§å¿µã®ãŸã‚å…ƒã«æˆ»ã—ã¦ãŠã. | |
562 | glMatrixMode(GL_MODELVIEW); | 667 | glMatrixMode(GL_MODELVIEW); | |
563 | } | 668 | } | |
564 | 669 | |||
565 | // *********************************************************************** | 670 | // *********************************************************************** | |
566 | // rendering ************************************************************* | 671 | // rendering ************************************************************* | |
567 | 672 | |||
568 | // +---------------------------------------------------- | 673 | // +---------------------------------------------------- | |
569 | // スクリーンã«æç”»ã™ã‚‹ | 674 | // スクリーンã«æç”»ã™ã‚‹ | |
570 | // +---------------------------------------------------- | 675 | // +---------------------------------------------------- | |
571 | void ic2_DrawFrame (void) { | 676 | void ic2_DrawFrame (void) { | |
572 | 677 | |||
573 | // (å‰å‡¦ç†) 以å‰ã«glClearColor()ã§æŒ‡å®šã—ãŸè‰²ã§å¡—ã‚Šæ½°ã™ | 678 | // (å‰å‡¦ç†) 以å‰ã«glClearColor()ã§æŒ‡å®šã—ãŸè‰²ã§å¡—ã‚Šæ½°ã™ | |
574 | glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); | 679 | glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); | |
575 | // (å‰å‡¦ç†) 今回CGã‚’æç”»ã™ã‚‹ç¯„囲 | 680 | // (å‰å‡¦ç†) 今回CGã‚’æç”»ã™ã‚‹ç¯„囲 | |
576 | glViewport(0, 0, window_w, window_h); | 681 | glViewport(0, 0, window_w, window_h); | |
577 | 682 | |||
578 | // (1) カメラã®è¨ç½® | 683 | // (1) カメラã®è¨ç½® | |
579 | if (tgl_perspective == 1) { | 684 | if (tgl_perspective == 1) { | |
580 | ic2_SetUpCamera_Perspective(); | 685 | ic2_SetUpCamera_Perspective(); | |
581 | } else { | 686 | } else { | |
582 | ic2_SetUpCamera_Ortho(); | 687 | ic2_SetUpCamera_Ortho(); | |
583 | } | 688 | } | |
584 | 689 | |||
585 | // (2) å…‰æºã®è¨ç½® | 690 | // (2) å…‰æºã®è¨ç½® | |
586 | ic2_LightSetA(); | 691 | ic2_LightSetA(); | |
587 | 692 | |||
588 | // (3) 物体ã®è¨ç½® | 693 | // (3) 物体ã®è¨ç½® | |
589 | // 一時的ãªå…‰æºç’°å¢ƒã®æ“作時ã«ã¯ãƒãƒƒã‚¯ã—ãŸè¡Œåˆ—を上乗㛠| 694 | // 一時的ãªå…‰æºç’°å¢ƒã®æ“作時ã«ã¯ãƒãƒƒã‚¯ã—ãŸè¡Œåˆ—を上乗㛠| |
590 | if (tgl_movelightonly == 1) { | 695 | if (tgl_movelightonly == 1) { | |
591 | glMatrixMode(GL_MODELVIEW); | 696 | glMatrixMode(GL_MODELVIEW); | |
592 | glPushMatrix(); | 697 | glPushMatrix(); | |
593 | glLoadMatrixf(mvmlocked); | 698 | glLoadMatrixf(mvmlocked); | |
594 | } | 699 | } | |
595 | if (tgl_showpredefined == 1) { | 700 | if (tgl_showpredefined == 1) { | |
596 | // 物体æç”»:æ£æ–¹å½¢ | 701 | // 物体æç”»:æ£æ–¹å½¢ | |
597 | ic2_FigSquare(0.9); | 702 | ic2_FigSquare(0.9); | |
598 | // 物体æç”»:ティーãƒãƒƒãƒˆ | 703 | // 物体æç”»:ティーãƒãƒƒãƒˆ | |
599 | ic2_FigSolidTeapot(0.5); | 704 | ic2_FigSolidTeapot(0.5); | |
600 | } | 705 | } | |
601 | ic2_DrawModel(firstpatchptr); | 706 | ic2_DrawModel(firstpatchptr); | |
602 | // 一時的ãªå…‰æºç’°å¢ƒã®æ“作時ã«ã¯ä¸Šä¹—ã›ã—ãŸè¡Œåˆ—を廃棄 | 707 | // 一時的ãªå…‰æºç’°å¢ƒã®æ“作時ã«ã¯ä¸Šä¹—ã›ã—ãŸè¡Œåˆ—を廃棄 | |
603 | if (tgl_movelightonly == 1) { | 708 | if (tgl_movelightonly == 1) { | |
604 | glPopMatrix(); | 709 | glPopMatrix(); | |
605 | } | 710 | } | |
606 | 711 | |||
607 | // (後処ç†) スクリーンã®åˆ‡ã‚Šæ›¿ãˆ | 712 | // (後処ç†) スクリーンã®åˆ‡ã‚Šæ›¿ãˆ | |
608 | glutSwapBuffers(); | 713 | glutSwapBuffers(); | |
609 | 714 | |||
610 | } | 715 | } | |
611 | 716 | |||
612 | // *********************************************************************** | 717 | // *********************************************************************** | |
613 | // callbacks ************************************************************* | 718 | // callbacks ************************************************************* | |
614 | 719 | |||
615 | // +---------------------------------------------------- | 720 | // +---------------------------------------------------- | |
616 | // ã‚ーãŒä½•ã‹æŠ¼ã•ã‚ŒãŸã¨ãã®å¯¾ç–用関数 | 721 | // ã‚ーãŒä½•ã‹æŠ¼ã•ã‚ŒãŸã¨ãã®å¯¾ç–用関数 | |
617 | // +---------------------------------------------------- | 722 | // +---------------------------------------------------- | |
618 | // glutKeyboardFunc()ã«ã¦ç™»éŒ²äºˆå®š | 723 | // glutKeyboardFunc()ã«ã¦ç™»éŒ²äºˆå®š | |
619 | // 引数 : key ... å…¥åŠ›æ–‡å— | 724 | // 引数 : key ... å…¥åŠ›æ–‡å— | |
620 | // 引数 : x ... æ–‡å—ãŒæŠ¼ã•ã‚ŒãŸã¨ãã®ãƒžã‚¦ã‚¹ã‚«ãƒ¼ã‚½ãƒ«ã®ï¼¸ä½ç½® | 725 | // 引数 : x ... æ–‡å—ãŒæŠ¼ã•ã‚ŒãŸã¨ãã®ãƒžã‚¦ã‚¹ã‚«ãƒ¼ã‚½ãƒ«ã®ï¼¸ä½ç½® | |
621 | // 引数 : y ... æ–‡å—ãŒæŠ¼ã•ã‚ŒãŸã¨ãã®ãƒžã‚¦ã‚¹ã‚«ãƒ¼ã‚½ãƒ«ã®ï¼¹ä½ç½® | 726 | // 引数 : y ... æ–‡å—ãŒæŠ¼ã•ã‚ŒãŸã¨ãã®ãƒžã‚¦ã‚¹ã‚«ãƒ¼ã‚½ãƒ«ã®ï¼¹ä½ç½® | |
622 | void ic2_NormalKeyInput (unsigned char key, int x, int y) { | 727 | void ic2_NormalKeyInput (unsigned char key, int x, int y) { | |
623 | float delta_t = 0.1; // [unit] | |||
624 | float delta_r = 1.0; // [degree] | |||
625 | ||||
626 | switch (key) { | 728 | switch (key) { | |
627 | case 'q' : | 729 | case 'q' : | |
628 | case 'Q' : | 730 | case 'Q' : | |
629 | case 27 : // ESCã‚ーã®ã“㨠| 731 | case 27 : // ESCã‚ーã®ã“㨠| |
630 | exit (0); | 732 | exit (0); | |
631 | break; | 733 | break; | |
632 | 734 | |||
633 | // Translation -_+ : [X]h_l [Y]n_u [Z]j_k | 735 | // Translation -_+ : [X]h_l [Y]n_u [Z]j_k | |
634 | case 'h': glTranslatef(delta_t * -1, 0, 0); ic2_LogKey(key); break; | 736 | case 'h': glTranslatef(delta_t * -1, 0, 0); ic2_LogKey(key); break; | |
635 | case 'l': glTranslatef(delta_t * +1, 0, 0); ic2_LogKey(key); break; | 737 | case 'l': glTranslatef(delta_t * +1, 0, 0); ic2_LogKey(key); break; | |
636 | case 'n': glTranslatef(0, delta_t * -1, 0); ic2_LogKey(key); break; | 738 | case 'n': glTranslatef(0, delta_t * -1, 0); ic2_LogKey(key); break; | |
637 | case 'u': glTranslatef(0, delta_t * +1, 0); ic2_LogKey(key); break; | 739 | case 'u': glTranslatef(0, delta_t * +1, 0); ic2_LogKey(key); break; | |
638 | case 'j': glTranslatef(0, 0, delta_t * -1); ic2_LogKey(key); break; | 740 | case 'j': glTranslatef(0, 0, delta_t * -1); ic2_LogKey(key); break; | |
639 | case 'k': glTranslatef(0, 0, delta_t * +1); ic2_LogKey(key); break; | 741 | case 'k': glTranslatef(0, 0, delta_t * +1); ic2_LogKey(key); break; | |
640 | 742 | |||
641 | // Rotation -_+ : [Y]a_f [Z]s_d [X]x_w | 743 | // Rotation -_+ : [Y]a_f [Z]s_d [X]x_w | |
642 | case 'x': glRotatef(delta_r * -1, 1, 0, 0); ic2_LogKey(key); break; | 744 | case 'x': glRotatef(delta_r * -1, 1, 0, 0); ic2_LogKey(key); break; | |
643 | case 'w': glRotatef(delta_r * +1, 1, 0, 0); ic2_LogKey(key); break; | 745 | case 'w': glRotatef(delta_r * +1, 1, 0, 0); ic2_LogKey(key); break; | |
644 | case 'a': glRotatef(delta_r * -1, 0, 1, 0); ic2_LogKey(key); break; | 746 | case 'a': glRotatef(delta_r * -1, 0, 1, 0); ic2_LogKey(key); break; | |
645 | case 'f': glRotatef(delta_r * +1, 0, 1, 0); ic2_LogKey(key); break; | 747 | case 'f': glRotatef(delta_r * +1, 0, 1, 0); ic2_LogKey(key); break; | |
646 | case 's': glRotatef(delta_r * -1, 0, 0, 1); ic2_LogKey(key); break; | 748 | case 's': glRotatef(delta_r * -1, 0, 0, 1); ic2_LogKey(key); break; | |
647 | case 'd': glRotatef(delta_r * +1, 0, 0, 1); ic2_LogKey(key); break; | 749 | case 'd': glRotatef(delta_r * +1, 0, 0, 1); ic2_LogKey(key); break; | |
648 | 750 | |||
649 | // [Scale] v_b | 751 | // [Scale] v_b | |
650 | case 'v': glScalef(0.95, 0.95, 0.95); ic2_LogKey(key); break; | 752 | case 'v': glScalef(0.95, 0.95, 0.95); ic2_LogKey(key); break; | |
651 | case 'b': glScalef(1.05, 1.05, 1.05); ic2_LogKey(key); break; | 753 | case 'b': glScalef(1.05, 1.05, 1.05); ic2_LogKey(key); break; | |
652 | 754 | |||
653 | // [No Operation] z | 755 | // [No Operation] z | |
654 | case 'z': ic2_LogKey(key); break; | 756 | case 'z': ic2_LogKey(key); break; | |
655 | 757 | |||
656 | // [Reset] | 758 | // [Reset] | |
657 | case 'R': | 759 | case 'R': | |
658 | glMatrixMode(GL_MODELVIEW); | 760 | glMatrixMode(GL_MODELVIEW); | |
659 | glPopMatrix(); // ä¿è·ã•ã‚Œã¦ãŸç¬¬ï¼‘階層ã«é™ã‚Šã‚‹ | 761 | glPopMatrix(); // ä¿è·ã•ã‚Œã¦ãŸç¬¬ï¼‘階層ã«é™ã‚Šã‚‹ | |
660 | glPushMatrix(); // ä¿è·ã•ã‚Œã¦ãŸç¬¬ï¼‘階層ã‹ã‚‰ã‚³ãƒ”ーã—ã¦ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—を1ã¤ä¸Šã’ã‚‹ | 762 | glPushMatrix(); // ä¿è·ã•ã‚Œã¦ãŸç¬¬ï¼‘階層ã‹ã‚‰ã‚³ãƒ”ーã—ã¦ã‚¹ã‚¿ãƒƒã‚¯ãƒˆãƒƒãƒ—を1ã¤ä¸Šã’ã‚‹ | |
661 | ic2_LogKey(key); | 763 | ic2_LogKey(key); | |
662 | break; | 764 | break; | |
663 | 765 | |||
664 | // [Show Stacktop MODELVIEW Matrix] | 766 | // [Show Stacktop MODELVIEW Matrix] | |
665 | case 'p': | 767 | case 'p': | |
666 | ic2_ShowMATRIX("Current status"); | 768 | ic2_ShowMATRIX("Current status"); | |
667 | break; | 769 | break; | |
668 | 770 | |||
669 | // [Toggle Objects] T | 771 | // [Toggle Objects] T | |
670 | case 'T': tgl_showpredefined *= -1; break; | 772 | case 'T': tgl_showpredefined *= -1; break; | |
671 | // [Toggle Normals] N | 773 | // [Toggle Normals] N | |
672 | case 'N': tgl_shownormal *= -1; break; | 774 | case 'N': tgl_shownormal *= -1; break; | |
673 | // [Move only lights temporarily] L | 775 | // [Move only lights temporarily] L | |
674 | case 'L': | 776 | case 'L': | |
675 | tgl_movelightonly *= -1; | 777 | tgl_movelightonly *= -1; | |
676 | if (tgl_movelightonly == 1) { | 778 | if (tgl_movelightonly == 1) { | |
677 | // ã“ã®æ™‚点ã®MODELVIEW行列をä¿å˜ã—ã¦ãƒãƒƒã‚¯çŠ¶æ…‹ã«ã™ã‚‹ | 779 | // ã“ã®æ™‚点ã®MODELVIEW行列をä¿å˜ã—ã¦ãƒãƒƒã‚¯çŠ¶æ…‹ã«ã™ã‚‹ | |
678 | glMatrixMode(GL_MODELVIEW); | 780 | glMatrixMode(GL_MODELVIEW); | |
679 | glGetFloatv(GL_MODELVIEW_MATRIX , mvmlocked); | 781 | glGetFloatv(GL_MODELVIEW_MATRIX , mvmlocked); | |
680 | } else { | 782 | } else { | |
681 | // ãƒãƒƒã‚¯çŠ¶æ…‹ã‚’開始ã—ãŸã¨ãã®çŠ¶æ³ã«å¾©å¸° | 783 | // ãƒãƒƒã‚¯çŠ¶æ…‹ã‚’開始ã—ãŸã¨ãã®çŠ¶æ³ã«å¾©å¸° | |
682 | glMatrixMode(GL_MODELVIEW); | 784 | glMatrixMode(GL_MODELVIEW); | |
683 | glLoadMatrixf(mvmlocked); | 785 | glLoadMatrixf(mvmlocked); | |
684 | } | 786 | } | |
685 | break; | 787 | break; | |
686 | // [Toggle Projection Method] O, P | 788 | // [Toggle Projection Method] O, P | |
687 | case 'O': tgl_perspective = -1; ic2_LogKey(key); break; | 789 | case 'O': tgl_perspective = -1; ic2_LogKey(key); break; | |
688 | case 'P': tgl_perspective = +1; ic2_LogKey(key); break; | 790 | case 'P': tgl_perspective = +1; ic2_LogKey(key); break; | |
689 | 791 | |||
690 | // [Key Memory - Animation] | 792 | // [Key Memory - Animation] | |
691 | case 'S': | 793 | case 'S': | |
692 | // リンクトリストã®åˆæœŸåŒ– | 794 | // リンクトリストã®åˆæœŸåŒ– | |
693 | ic2_FreeKEYINPUTList(firstkeyinputptr); | 795 | ic2_FreeKEYINPUTList(firstkeyinputptr); | |
694 | firstkeyinputptr = NULL; | 796 | firstkeyinputptr = NULL; | |
695 | latestkeyinputptr = NULL; | 797 | latestkeyinputptr = NULL; | |
696 | tgl_keyinput = 1; // 記録開始 | 798 | tgl_keyinput = 1; // 記録開始 | |
697 | ic2_NormalKeyInput('O', 0, 0); // 投影ã®åˆæœŸåŒ–(直交投影) | 799 | ic2_NormalKeyInput('O', 0, 0); // 投影ã®åˆæœŸåŒ–(直交投影) | |
698 | ic2_NormalKeyInput('R', 0, 0); // MODELVIEW行列ã®åˆæœŸåŒ– | 800 | ic2_NormalKeyInput('R', 0, 0); // MODELVIEW行列ã®åˆæœŸåŒ– | |
699 | printf("Start recording\n"); | 801 | printf("Start recording\n"); | |
700 | break; | 802 | break; | |
701 | case 'E': | 803 | case 'E': | |
702 | tgl_keyinput = -1; // 記録終了 | 804 | tgl_keyinput = -1; // 記録終了 | |
703 | printf("End recording\n"); | 805 | printf("End recording\n"); | |
704 | break; | 806 | break; | |
705 | case 'A': | 807 | case 'A': | |
706 | ic2_PrintKEYINPUTList(); | 808 | ic2_PrintKEYINPUTList(); | |
707 | break; | 809 | break; | |
708 | case 'G': | 810 | case 'G': | |
709 | tgl_keyinput = -1; // No recording while playing | 811 | tgl_keyinput = -1; // No recording while playing | |
710 | tgl_playing = 1; // Now playing! | 812 | tgl_playing = 1; // Now playing! | |
711 | printf("Start playing (interval = %d[ms]\n", playinterval); | 813 | printf("Start playing (interval = %d[ms]\n", playinterval); | |
712 | // 最åˆã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³æç”» | 814 | // 最åˆã®ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³æç”» | |
713 | glutTimerFunc(playinterval, ic2_timerhandler, 0); | 815 | glutTimerFunc(playinterval, ic2_timerhandler, 0); | |
714 | break; | 816 | break; | |
817 | case 'W': | |||
818 | ic2_WriteKEYINPUTList("IC2_animation-w.txt"); | |||
819 | break; | |||
820 | case 'I': | |||
821 | ic2_ReadKEYINPUTList("IC2_animation-r.txt"); | |||
822 | break; | |||
715 | } | 823 | } | |
716 | 824 | |||
717 | // 次ã®ãƒ¡ã‚¤ãƒ³ãƒ«ãƒ¼ãƒ—(glutMainLoop)ã§ã®ç¹°ã‚Šè¿”ã—時ã«æ画をè¦æ±‚ | 825 | // 次ã®ãƒ¡ã‚¤ãƒ³ãƒ«ãƒ¼ãƒ—(glutMainLoop)ã§ã®ç¹°ã‚Šè¿”ã—時ã«æ画をè¦æ±‚ | |
718 | glutPostWindowRedisplay(window_id); | 826 | glutPostWindowRedisplay(window_id); | |
719 | } | 827 | } | |
720 | 828 | |||
721 | // +---------------------------------------------------- | 829 | // +---------------------------------------------------- | |
722 | // ウィンドウサイズã®å¤‰æ›´ãŒç”Ÿã˜ãŸã¨ãã®å¯¾ç–用関数 | 830 | // ウィンドウサイズã®å¤‰æ›´ãŒç”Ÿã˜ãŸã¨ãã®å¯¾ç–用関数 | |
723 | // +---------------------------------------------------- | 831 | // +---------------------------------------------------- | |
724 | // glutReshapeFunc()ã«ã¦ç™»éŒ² | 832 | // glutReshapeFunc()ã«ã¦ç™»éŒ² | |
725 | void ic2_ReshapeWindow (int w, int h) { | 833 | void ic2_ReshapeWindow (int w, int h) { | |
726 | 834 | |||
727 | // æ–°ã—ã„ウィンドウサイズを大域変数ã«ã‚»ãƒƒãƒˆ | 835 | // æ–°ã—ã„ウィンドウサイズを大域変数ã«ã‚»ãƒƒãƒˆ | |
728 | window_w = w; window_h = h; | 836 | window_w = w; window_h = h; | |
729 | 837 | |||
730 | // 次ã®ãƒ¡ã‚¤ãƒ³ãƒ«ãƒ¼ãƒ—(glutMainLoop)ã§ã®ç¹°ã‚Šè¿”ã—時ã«æ画をè¦æ±‚ | 838 | // 次ã®ãƒ¡ã‚¤ãƒ³ãƒ«ãƒ¼ãƒ—(glutMainLoop)ã§ã®ç¹°ã‚Šè¿”ã—時ã«æ画をè¦æ±‚ | |
731 | glutPostWindowRedisplay(window_id); | 839 | glutPostWindowRedisplay(window_id); | |
732 | } | 840 | } | |
733 | 841 | |||
734 | // ----------------------------------------------------- | 842 | // ----------------------------------------------------- | |
735 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®å†ç”Ÿ | 843 | // ã‚ãƒ¼ã‚¤ãƒ³ãƒ—ãƒƒãƒˆæ§‹é€ ä½“(ic2KEYINPUT)リストã®å†ç”Ÿ | |
736 | // ----------------------------------------------------- | 844 | // ----------------------------------------------------- | |
737 | void ic2_timerhandler(int keynumber){ | 845 | void ic2_timerhandler(int keynumber){ | |
738 | struct ic2KEYINPUT *p; | 846 | struct ic2KEYINPUT *p; | |
739 | int i = 0; | 847 | int i = 0; | |
740 | 848 | |||
741 | printf("ic2_timerhandelr: ID = %4d ", keynumber); | 849 | printf("ic2_timerhandelr: ID = %4d ", keynumber); | |
742 | for (p = firstkeyinputptr; p != NULL; p = p->next) { | 850 | for (p = firstkeyinputptr; p != NULL; p = p->next) { | |
743 | if (i == keynumber) { | 851 | if (i == keynumber) { | |
744 | printf(", key = '%c'\n", p->key); | 852 | printf(", key = '%c'\n", p->key); | |
745 | ic2_NormalKeyInput(p->key, 0, 0); // 指定番å·ã®ã‚ーã®å†ç”Ÿ | 853 | ic2_NormalKeyInput(p->key, 0, 0); // 指定番å·ã®ã‚ーã®å†ç”Ÿ | |
746 | if (p->next != NULL) { | 854 | if (p->next != NULL) { | |
747 | // 次ã®å†ç”Ÿã¸ã®æº–備(タイマーã®ã‚»ãƒƒãƒˆï¼‰ | 855 | // 次ã®å†ç”Ÿã¸ã®æº–備(タイマーã®ã‚»ãƒƒãƒˆï¼‰ | |
748 | glutTimerFunc(playinterval, ic2_timerhandler, keynumber + 1); | 856 | glutTimerFunc(playinterval, ic2_timerhandler, keynumber + 1); | |
749 | } else { | 857 | } else { | |
750 | // å†ç”Ÿçµ‚了 | 858 | // å†ç”Ÿçµ‚了 | |
751 | printf("End playing\n"); | 859 | printf("End playing\n"); | |
752 | tgl_playing = -1; | 860 | tgl_playing = -1; | |
753 | } | 861 | } | |
754 | return ; | 862 | return ; | |
755 | } | 863 | } | |
756 | i++; | 864 | i++; | |
757 | } | 865 | } | |
758 | } | 866 | } | |
759 | 867 | |||
760 | // +---------------------------------------------------- | 868 | // +---------------------------------------------------- | |
761 | // OpenGLã¨ã—ã¦ã®Windowã®åˆæœŸåŒ– | 869 | // OpenGLã¨ã—ã¦ã®Windowã®åˆæœŸåŒ– | |
762 | // +---------------------------------------------------- | 870 | // +---------------------------------------------------- | |
763 | void ic2_BootWindow (char winname[]) { | 871 | void ic2_BootWindow (char winname[]) { | |
764 | 872 | |||
765 | // ダブルãƒãƒƒãƒ•ã‚¡,RGB表色モード,デプスãƒãƒƒãƒ•ã‚¡ を利用 | 873 | // ダブルãƒãƒƒãƒ•ã‚¡,RGB表色モード,デプスãƒãƒƒãƒ•ã‚¡ を利用 | |
766 | glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); | 874 | glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH); | |
767 | 875 | |||
768 | // ウィンドウã®å¤§ãã• | 876 | // ウィンドウã®å¤§ãã• | |
769 | glutInitWindowSize(window_w, window_h); | 877 | glutInitWindowSize(window_w, window_h); | |
770 | 878 | |||
771 | // ウィンドウを開ã | 879 | // ウィンドウを開ã | |
772 | window_id = glutCreateWindow(winname); | 880 | window_id = glutCreateWindow(winname); | |
773 | 881 | |||
774 | // レンダリングã«ã¯Smooth Shadingを採用 | 882 | // レンダリングã«ã¯Smooth Shadingを採用 | |
775 | glShadeModel(GL_SMOOTH); | 883 | glShadeModel(GL_SMOOTH); | |
776 | 884 | |||
777 | // ウィンドウ全体を書ãç›´ã™ã¨ãã®è‰²(ã“ã“ã§ã¯é»’) | 885 | // ウィンドウ全体を書ãç›´ã™ã¨ãã®è‰²(ã“ã“ã§ã¯é»’) | |
778 | glClearColor(0.0, 0.0, 0.0, 0.0); | 886 | glClearColor(0.0, 0.0, 0.0, 0.0); | |
779 | 887 | |||
780 | // åˆæœŸMODELVIEW matrixã®ä¿è· | 888 | // åˆæœŸMODELVIEW matrixã®ä¿è· | |
781 | glMatrixMode(GL_MODELVIEW); | 889 | glMatrixMode(GL_MODELVIEW); | |
782 | glPushMatrix(); // 以後本プãƒã‚°ãƒ©ãƒ ã§ã¯ GL_MODELVIEW スタックã®ï¼’層目以上ã§ä½œæ¥ | 890 | glPushMatrix(); // 以後本プãƒã‚°ãƒ©ãƒ ã§ã¯ GL_MODELVIEW スタックã®ï¼’層目以上ã§ä½œæ¥ | |
783 | 891 | |||
784 | // Callback関数をè¨å®š (イベント処ç†) | 892 | // Callback関数をè¨å®š (イベント処ç†) | |
785 | glutIdleFunc(ic2_DrawFrame); // 暇ã ã£ãŸã‚‰ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’æã(よã„実装ã§ã¯ãªã„) | 893 | glutIdleFunc(ic2_DrawFrame); // 暇ã ã£ãŸã‚‰ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’æã(よã„実装ã§ã¯ãªã„) | |
786 | glutKeyboardFunc(ic2_NormalKeyInput); // ã‚ーãŒæŠ¼ã•ã‚ŒãŸã¨ãã®å¯¾ç– | 894 | glutKeyboardFunc(ic2_NormalKeyInput); // ã‚ーãŒæŠ¼ã•ã‚ŒãŸã¨ãã®å¯¾ç– | |
787 | glutReshapeFunc(ic2_ReshapeWindow); // ウィンドウサイズ変更ãŒæ¤œçŸ¥ã•ã‚ŒãŸã¨ãã®å¯¾ç– | 895 | glutReshapeFunc(ic2_ReshapeWindow); // ウィンドウサイズ変更ãŒæ¤œçŸ¥ã•ã‚ŒãŸã¨ãã®å¯¾ç– | |
788 | } | 896 | } | |
789 | 897 | |||
790 | // *********************************************************************** | 898 | // *********************************************************************** | |
791 | // main ***************************************************************** | 899 | // main ***************************************************************** | |
792 | // +---------------------------------------------------- | 900 | // +---------------------------------------------------- | |
793 | // Main Function | 901 | // Main Function | |
794 | // +---------------------------------------------------- | 902 | // +---------------------------------------------------- | |
795 | int main (int argc, char *argv[]) { | 903 | int main (int argc, char *argv[]) { | |
796 | int numberpatches = 0; | 904 | int numberpatches = 0; | |
797 | 905 | |||
798 | // model ファイルã®èªã¿è¾¼ã¿ | 906 | // model ファイルã®èªã¿è¾¼ã¿ | |
799 | if (argc <= 1) { | 907 | if (argc <= 1) { | |
800 | printf("Error: no model file is specified.\n"); | 908 | printf("Error: no model file is specified.\n"); | |
801 | return 1; | 909 | return 1; | |
802 | } | 910 | } | |
803 | numberpatches = ic2_ReadModel(argv[1], &firstpatchptr); | 911 | numberpatches = ic2_ReadModel(argv[1], &firstpatchptr); | |
804 | if (numberpatches < 0) { | 912 | if (numberpatches < 0) { | |
805 | printf("Error: invalid model \"%s\", reading failed.\n", argv[1]); | 913 | printf("Error: invalid model \"%s\", reading failed.\n", argv[1]); | |
806 | return 1; | 914 | return 1; | |
807 | } | 915 | } | |
808 | printf("Number of Patches in the model = %d \n", numberpatches); | 916 | printf("Number of Patches in the model = %d \n", numberpatches); | |
809 | 917 | |||
810 | // glutライブラリã«ã‚ˆã‚‹å¼•æ•°ã®è§£é‡ˆ | 918 | // glutライブラリã«ã‚ˆã‚‹å¼•æ•°ã®è§£é‡ˆ | |
811 | glutInit(&argc, argv); | 919 | glutInit(&argc, argv); | |
812 | 920 | |||
813 | // OpenGL Window ã®åˆæœŸåŒ– | 921 | // OpenGL Window ã®åˆæœŸåŒ– | |
814 | ic2_BootWindow(argv[0]); | 922 | ic2_BootWindow(argv[0]); | |
815 | 923 | |||
816 | // ç„¡é™ãƒ«ãƒ¼ãƒ—ã®é–‹å§‹ | 924 | // ç„¡é™ãƒ«ãƒ¼ãƒ—ã®é–‹å§‹ | |
817 | glutMainLoop(); | 925 | glutMainLoop(); | |
818 | 926 | |||
819 | return 0; | 927 | return 0; | |
820 | } | 928 | } |