1 | #include "../BasicCompiler_Common/common.h"
|
---|
2 |
|
---|
3 | BOOL GetErrorMsg(int num,const char *KeyWord,char *msg,int pos){
|
---|
4 | extern HANDLE hHeap;
|
---|
5 | int i2;
|
---|
6 | char temporary[64];
|
---|
7 |
|
---|
8 | char tempKeyWord[1024];
|
---|
9 | if(KeyWord){
|
---|
10 | lstrcpy(tempKeyWord,KeyWord);
|
---|
11 | for(i2=0;;i2++){
|
---|
12 | if(tempKeyWord[i2]=='\0') break;
|
---|
13 | if(tempKeyWord[i2]==1){
|
---|
14 | GetDefaultNameFromES(tempKeyWord[i2+1],temporary);
|
---|
15 | SlideString(tempKeyWord+i2+2,lstrlen(temporary)-2);
|
---|
16 | memcpy(tempKeyWord+i2,temporary,lstrlen(temporary));
|
---|
17 | }
|
---|
18 | }
|
---|
19 | }
|
---|
20 | else{
|
---|
21 | lstrcpy(tempKeyWord,"");
|
---|
22 | }
|
---|
23 |
|
---|
24 | if(num==-1||num==-2) lstrcpy(msg,tempKeyWord); //部分エラー
|
---|
25 |
|
---|
26 | if(num==3){
|
---|
27 | temporary[0]=tempKeyWord[0];
|
---|
28 | for(i2=1;;i2++){
|
---|
29 | if((!IsVariableChar(tempKeyWord[i2]))||i2>=255){
|
---|
30 | temporary[i2]=0;
|
---|
31 | break;
|
---|
32 | }
|
---|
33 | temporary[i2]=tempKeyWord[i2];
|
---|
34 | }
|
---|
35 |
|
---|
36 | extern char **SynonymErrorWords;
|
---|
37 | extern int SynonymErrorNum;
|
---|
38 | for(i2=0;i2<SynonymErrorNum;i2++){
|
---|
39 | if(lstrcmp(SynonymErrorWords[i2],temporary)==0) return 0;
|
---|
40 | }
|
---|
41 |
|
---|
42 | #if defined(JPN)
|
---|
43 | //日本語
|
---|
44 | sprintf(msg,"\"%s\" 無効な識別子です",temporary);
|
---|
45 | #else
|
---|
46 | //英語
|
---|
47 | sprintf(msg,"\"%s\" Invalid identifier.",temporary);
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | //重複エラー情報を追加
|
---|
51 | SynonymErrorWords=(char **)HeapReAlloc(hHeap,0,SynonymErrorWords,(SynonymErrorNum+1)*sizeof(char *));
|
---|
52 | SynonymErrorWords[SynonymErrorNum]=(char *)HeapAlloc(hHeap,0,lstrlen(temporary)+1);
|
---|
53 | lstrcpy(SynonymErrorWords[SynonymErrorNum],temporary);
|
---|
54 | SynonymErrorNum++;
|
---|
55 | }
|
---|
56 | if(num==30){
|
---|
57 | #if defined(JPN)
|
---|
58 | //日本語
|
---|
59 | if(temporary[0]) sprintf(msg,"\"%s\" の使い方が不正です",tempKeyWord);
|
---|
60 | else lstrcpy(msg,"文法が間違っています");
|
---|
61 | #else
|
---|
62 | //英語
|
---|
63 | if(temporary[0]) sprintf(msg,"How to use the \"%s\" is wrong.",tempKeyWord);
|
---|
64 | else lstrcpy(msg,"Syntax Error.");
|
---|
65 | #endif
|
---|
66 | }
|
---|
67 |
|
---|
68 |
|
---|
69 | /////////////////////
|
---|
70 | // ワーニングエラー
|
---|
71 | /////////////////////
|
---|
72 | #if defined(JPN)
|
---|
73 | ////////////////////
|
---|
74 | //日本語
|
---|
75 | ////////////////////
|
---|
76 | if(num==-101) sprintf(msg,"[警告] %sに強制変換されています。データが失われる可能性があります。",tempKeyWord);
|
---|
77 | if(num==-102) sprintf(msg,"[警告] %sに強制変換されています。",tempKeyWord);
|
---|
78 | if(num==-103) sprintf(msg,"[警告] \"%s\" 型が指定されていません。Double型として扱います。",tempKeyWord);
|
---|
79 | if(num==-104) sprintf(msg,"[警告] \"%s\" 戻り値の型が指定されていません。Double型として扱います。",tempKeyWord);
|
---|
80 | if(num==-105) sprintf(msg,"[警告] 一時オブジェクトの解放を行えません。キャスト用オブジェクトを用意してください。",tempKeyWord);
|
---|
81 | if(num==-106) sprintf(msg,"[警告] DLLファイル \"%s\" が見つかりません。",tempKeyWord);
|
---|
82 | if(num==-107) sprintf(msg,"[警告] DLL関数 \"%s\" を参照できません。",tempKeyWord);
|
---|
83 | if(num==-120) sprintf(msg,"[警告] VarPtr関数の引数にオブジェクト インスタンスが指定されました。オブジェクトの先頭アドレスを取得したいときはObjPtr関数に切り替えをお願いします。m(__)m(この警告はVarPtr→ObjPtrへの切り替えが完了したら消します(切り替えは \"適材箇所に限り\" ですので、ご注意ください!))",tempKeyWord);
|
---|
84 | #else
|
---|
85 | #endif
|
---|
86 |
|
---|
87 |
|
---|
88 | ///////////////
|
---|
89 | // 一般エラー
|
---|
90 | ///////////////
|
---|
91 |
|
---|
92 | #if defined(JPN)
|
---|
93 | ////////////////////
|
---|
94 | //日本語
|
---|
95 | ////////////////////
|
---|
96 | if(num==1) lstrcpy(msg,"文法が間違っています。");
|
---|
97 | if(num==2) sprintf(msg,"左のオペランドが、左辺値になっていません。");
|
---|
98 | //num==3は予約されています
|
---|
99 | if(num==4) sprintf(msg,"%sの相互関係が一致しません。",tempKeyWord);
|
---|
100 | if(num==5) sprintf(msg,"ダブルクォートの数が一致しません。");
|
---|
101 | if(num==6) sprintf(msg,"\"%s\" ジャンプ先が不正です。",tempKeyWord);
|
---|
102 | if(num==7) lstrcpy(msg,"DLL名が長すぎます(拡張子を含め、16文字以下にして下さい)。");
|
---|
103 | if(num==8) lstrcpy(msg,"コンパイラが認識できない文字コードが含まれています。");
|
---|
104 | if(num==9) sprintf(msg,"型が違います。");
|
---|
105 | if(num==10) sprintf(msg,"\"%s\" のパラメータ指定が間違っています。",tempKeyWord);
|
---|
106 | if(num==11) sprintf(msg,"\"%s\" 型が違います。",tempKeyWord);
|
---|
107 | if(num==12) sprintf(msg,"\"%s\" の使い方が不正です。",tempKeyWord);
|
---|
108 | if(num==13) sprintf(msg,"\"%s\" を参照できません。",tempKeyWord);
|
---|
109 | if(num==14) sprintf(msg,"\"%s\" 配列指定が不正です。",tempKeyWord);
|
---|
110 | if(num==15) sprintf(msg,"\"%s\" はすでに定義されています。",tempKeyWord);
|
---|
111 | if(num==16) sprintf(msg,"\"%s\" 配列、またはポインタ以外の変数に添え字が指定されています。",tempKeyWord);
|
---|
112 | if(num==17) sprintf(msg,"リソース データが不正です。");
|
---|
113 | if(num==18) sprintf(msg,"\"%s\"はポインタ変数型です。文字列演算を指定することはできません。",tempKeyWord);
|
---|
114 | if(num==19) sprintf(msg,"\"%s\"は値参照型です。ByVal指定することはできません。",tempKeyWord);
|
---|
115 | if(num==20) lstrcpy(msg,"全角スペースが含まれています(全角スペースはコンパイラが認識できないので、半角スペースまたはタブ文字にしてください)。");
|
---|
116 | if(num==21) sprintf(msg,"If制御のブロック指定が不正です。");
|
---|
117 | if(num==22) sprintf(msg,"\"%s\" に対する \"End %s\" が見つかりません。",tempKeyWord,tempKeyWord);
|
---|
118 | if(num==23) sprintf(msg,"リソース ファイル \"%s\" の読み込みに失敗。",tempKeyWord);
|
---|
119 | if(num==24) lstrcpy(msg,"Export指定の関数のパラメータには実体オブジェクトを利用することはできません(BytePtr型などを利用して下さい)。");
|
---|
120 | if(num==25) sprintf(msg,"DLL関数にオブジェクトを引き渡すことはできません(%s)。",tempKeyWord);
|
---|
121 | if(num==26) sprintf(msg,"\"%s\" 戻り値の型が指定されていません。",tempKeyWord);
|
---|
122 | if(num==27) sprintf(msg,"\"%s\" は定義されていません。",tempKeyWord);
|
---|
123 | if(num==28) sprintf(msg,"構造体パラメータは参照渡しにしてください(%s)。",tempKeyWord);
|
---|
124 | if(num==29) sprintf(msg,"配列ポインタを要素と同時に引渡すときは、ポインタ参照(ByRef)にしてください。");
|
---|
125 | //num==30は予約されています
|
---|
126 | if(num==31) sprintf(msg,"\"%s\" は構造体です(メンバの参照はピリオド \".\" で区切ってください)。",tempKeyWord);
|
---|
127 | if(num==32) sprintf(msg,"\"%s\" は構造体ポインタです(メンバの参照は \"->\" で区切ってください)。",tempKeyWord);
|
---|
128 | if(num==33) sprintf(msg,"定数式にリテラル値、または定数以外のものが含まれています。");
|
---|
129 | if(num==34) sprintf(msg,"定数はモジュールレベルで宣言して下さい。");
|
---|
130 | if(num==38) sprintf(msg,"\"%s\" 戻り値が存在しないプロシージャです。",tempKeyWord);
|
---|
131 | if(num==39) sprintf(msg,"\"%s\" はオブジェクトポインタではありません(\"->\" 参照はできません)。",tempKeyWord);
|
---|
132 | if(num==40) lstrcpy(msg,"DLL関数の戻り値としてオブジェクトを受け取ることはできません。");
|
---|
133 | if(num==41) lstrcpy(msg,"初期データが不正です。");
|
---|
134 | if(num==42) lstrcpy(msg,"閉じカッコ \")\" の後に不正な文字が含まれています。");
|
---|
135 | if(num==43) lstrcpy(msg,"ダブルクォートの後に不正な文字が含まれています。");
|
---|
136 | if(num==45) sprintf(msg,"実数に対して \"%s\" 演算子は利用できません。",tempKeyWord);
|
---|
137 | if(num==46) lstrcpy(msg,"配列の添え字に整数以外の値が与えられています。");
|
---|
138 | if(num==47) lstrcpy(msg,"As演算子の右辺値に型名以外の識別子が指定されています。");
|
---|
139 | if(num==48) sprintf(msg,"%s演算子に対して型名が指定されています。",tempKeyWord);
|
---|
140 | if(num==49) lstrcpy(msg,"添え字に整数以外の型が指定されています。");
|
---|
141 | if(num==50) sprintf(msg,"%sに変換できません。",tempKeyWord);
|
---|
142 | if(num==51) lstrcpy(msg,"オブジェクト、構造体のアラインメント値は1,2,4,8,16のいずれかでなければなりません。");
|
---|
143 | if(num==52) sprintf(msg,"\"%s\" オーバーロードを解決できません。",tempKeyWord);
|
---|
144 | if(num==53) sprintf(msg,"\"%s\" 出力ファイルの書き込みに失敗しました。実行されている可能性があります。",tempKeyWord);
|
---|
145 | if(num==54) sprintf(msg,"対応する%sが存在しません。",tempKeyWord);
|
---|
146 | if(num==55) sprintf(msg,"\"%s\" は対応するForステートメントで利用されるカウンタ変数ではありません。",tempKeyWord);
|
---|
147 | if(num==56) lstrcpy(msg,"ゼロ割りが行われました。");
|
---|
148 | if(num==57) lstrcpy(msg,"8進数のリテラル表記が不正です。");
|
---|
149 | if(num==58) lstrcpy(msg,"16進数のリテラル表記が不正です。");
|
---|
150 | if(num==59) sprintf(msg,"マニフェスト ファイル \"%s\" の読み込みに失敗。",tempKeyWord);
|
---|
151 | if(num==60) lstrcpy(msg,"Staticステートメントはグローバル領域では使用できません。");
|
---|
152 | if(num==61) sprintf(msg,"\"%s\" は定数です。書き込みアクセスはできません。",tempKeyWord);
|
---|
153 | if(num==62) sprintf(msg,"グローバル領域でのReturnは禁止されています。",tempKeyWord);
|
---|
154 | if(num==63) lstrcpy(msg,"名前空間が正しく閉じられていません。");
|
---|
155 | if(num==64) sprintf(msg,"\"%s\" 無効な名前空間です。",tempKeyWord);
|
---|
156 | if(num==65) sprintf(msg,"ローカル領域で%sは使用できません。",tempKeyWord);
|
---|
157 |
|
---|
158 |
|
---|
159 | //オブジェクト関連
|
---|
160 | if(num==102) sprintf(msg,"\"%s\" オブジェクトは定義されていません。",tempKeyWord);
|
---|
161 | if(num==103) sprintf(msg,"\"%s\" メンバは定義されていません。",tempKeyWord);
|
---|
162 | if(num==104) sprintf(msg,"\"%s\" 参照方法が違います。",tempKeyWord);
|
---|
163 | if(num==105) sprintf(msg,"\"%s\" 自身のクラスを継承することはできません。",tempKeyWord);
|
---|
164 | if(num==106) sprintf(msg,"\"%s\" クラスは定義されていません。",tempKeyWord);
|
---|
165 | if(num==107) sprintf(msg,"Privateメンバ \"%s\" にアクセスすることはできません。",tempKeyWord);
|
---|
166 | if(num==108) sprintf(msg,"Protectedメンバ \"%s\" にアクセスすることはできません。",tempKeyWord);
|
---|
167 | if(num==109) sprintf(msg,"Privateメンバ関数 \"%s\" を呼び出すことはできません。",tempKeyWord);
|
---|
168 | if(num==110) sprintf(msg,"Protectedメンバ関数 \"%s\" を呼び出すことはできません。",tempKeyWord);
|
---|
169 | if(num==111) lstrcpy(msg,"InheritsはClass定義内の先頭に記述する必要があります。");
|
---|
170 | if(num==112) sprintf(msg,"\"%s\" はクラス型ではないため、初期パラメータを指定することはできません。",tempKeyWord);
|
---|
171 | if(num==113) sprintf(msg,"\"%s\" コンストラクタへ渡すパラメータが不正です。",tempKeyWord);
|
---|
172 | if(num==114) lstrcpy(msg,"デストラクタはパラメータを持てません。");
|
---|
173 | if(num==115) lstrcpy(msg,"コンストラクタ及びデストラクタは戻り値を持てません。");
|
---|
174 | //if(num==116) lstrcpy(msg,"コンストラクタ及びデストラクタはパブリックアクセスにしなければなりません。");
|
---|
175 | if(num==117) lstrcpy(msg,"デストラクタの名前が \"~クラス名\" になっていません。");
|
---|
176 | if(num==118) lstrcpy(msg,"参照する基底クラスが存在しません。");
|
---|
177 | if(num==119) sprintf(msg,"\"%s\" メンバは基底クラスで定義されていません。",tempKeyWord);
|
---|
178 | if(num==120) lstrcpy(msg,"デストラクトするオブジェクトの型が不明です。");
|
---|
179 | if(num==121) lstrcpy(msg,"New演算子にはクラス以外の型を指定できません。");
|
---|
180 | if(num==122) lstrcpy(msg,"Delete演算子にポインタ以外の型が指定されています。");
|
---|
181 | if(num==123) lstrcpy(msg,"ループ継承が行われました。");
|
---|
182 | if(num==124) lstrcpy(msg,"循環参照が行われました。");
|
---|
183 | if(num==125) sprintf(msg,"\"%s\" は抽象クラスです。インスタンス化することはできません。",tempKeyWord);
|
---|
184 | if(num==126) lstrcpy(msg,"オペレータのオーバーロードをクラスの外で行うことはできません。");
|
---|
185 | if(num==127) lstrcpy(msg,"Override修飾子の指定が無い状況でオーバーライドを行うことはできません。");
|
---|
186 | if(num==128) lstrcpy(msg,"オーバーライドを行うときはアクセシビリティを同一にしなければなりません。");
|
---|
187 | if(num==129) sprintf(msg,"静的メンバ \"%s\" は定義されていません。",tempKeyWord);
|
---|
188 | if(num==130) sprintf(msg,"\"%s\" はオブジェクト定数です。書き込みアクセスはできません。",tempKeyWord);
|
---|
189 | if(num==131) lstrcpy(msg,"Const定義されたメソッド内でクラスメンバへの書き込みアクセスはできません。");
|
---|
190 | if(num==132) lstrcpy(msg,"明示的なコンストラクタ呼び出しと初期値の指定を同時に行うことはできません。");
|
---|
191 | if(num==133) lstrcpy(msg,"Thisに代入はできません。");
|
---|
192 | if(num==134) lstrcpy( msg,"ObjPtr関数にはオブジェクト インスタンス以外を指定できません。" );
|
---|
193 | if(num==135) lstrcpy( msg, "クラスまたはインターフェイス以外の型を継承元として指定することはできません。" );
|
---|
194 |
|
---|
195 | //Enum関連
|
---|
196 | if(num==150) sprintf(msg,"\"%s\" 値が定義されていません。",tempKeyWord);
|
---|
197 | if(num==151) sprintf(msg,"\"%s\" 列挙リストに登録されていません。",tempKeyWord);
|
---|
198 |
|
---|
199 | //リンカ
|
---|
200 | if(num==200) sprintf(msg,"\"%s\" 未解決です (リンク エラー)。",tempKeyWord);
|
---|
201 | if(num==201) sprintf(msg,"\"%s\" の読み込みに失敗。",tempKeyWord);
|
---|
202 |
|
---|
203 | //原因不明
|
---|
204 | if(num==300) lstrcpy(msg,"内部エラー");
|
---|
205 |
|
---|
206 | #else
|
---|
207 | ////////////////////
|
---|
208 | //英語
|
---|
209 | ////////////////////
|
---|
210 | if(num==1) lstrcpy(msg,"Syntax Error.");
|
---|
211 | if(num==2) sprintf(msg,"Left operand must be l-value.");
|
---|
212 | //num==3は予約されています
|
---|
213 | if(num==4) sprintf(msg,"Correlation of %s is wrong.",tempKeyWord);
|
---|
214 | if(num==5) sprintf(msg,"Correlation of double quotes is wrong.");
|
---|
215 | if(num==6) sprintf(msg,"\"%s\" Label not found.",tempKeyWord);
|
---|
216 | if(num==7) lstrcpy(msg,"The DLL name is too long. Must be 16 characters or less.");
|
---|
217 | if(num==8) lstrcpy(msg,"The inaccurate characters are contained.");
|
---|
218 | if(num==9) sprintf(msg,"Type is wrong.");
|
---|
219 | if(num==10) sprintf(msg,"\"%s\" Rule of parameter is wrong.",tempKeyWord);
|
---|
220 | if(num==11) sprintf(msg,"\"%s\" Type is wrong.",tempKeyWord);
|
---|
221 | if(num==12) sprintf(msg,"\"%s\" Not a valid use.",tempKeyWord);
|
---|
222 | if(num==13) sprintf(msg,"Cannot refer to \"%s\".",tempKeyWord);
|
---|
223 | if(num==14) sprintf(msg,"\"%s\" Array argument(s) out of bound.",tempKeyWord);
|
---|
224 | if(num==15) sprintf(msg,"\"%s\" is already defined.",tempKeyWord);
|
---|
225 | if(num==16) sprintf(msg,"\"%s\" Argument(s) following variable which is not pointer or array.",tempKeyWord);
|
---|
226 | if(num==17) sprintf(msg,"Invalid resource data.");
|
---|
227 | if(num==18) sprintf(msg,"\"%s\" Invalid operation on a pointer variable.",tempKeyWord);
|
---|
228 | if(num==19) sprintf(msg,"\"%s\" is already to be passed by value. You cannot use \"ByVal\".",tempKeyWord);
|
---|
229 | if(num==21) sprintf(msg,"Wrong structure of \"If\" block.");
|
---|
230 | if(num==22) sprintf(msg,"No matching \"End %s\" found for \"%s\".",tempKeyWord,tempKeyWord);
|
---|
231 | if(num==23) sprintf(msg,"Cannot read the resource file \"%s\".",tempKeyWord);
|
---|
232 | if(num==24) lstrcpy(msg,"Must not use String type as an argument for exported function. (Use BytePtr type instead.)");
|
---|
233 | if(num==27) sprintf(msg,"\"%s\" Undefined procedure.",tempKeyWord);
|
---|
234 | if(num==28) sprintf(msg,"\"%s\" Structure must not be passed by value. (Use \"ByRef\".)",tempKeyWord);
|
---|
235 | if(num==29) sprintf(msg,"Array must not be passed by value. (Use \"ByRef\".)");
|
---|
236 | //num==30は予約されています
|
---|
237 | if(num==31) sprintf(msg,"\"%s\" is a struct. (Use period \".\" to refer to the members.)",tempKeyWord);
|
---|
238 | if(num==32) sprintf(msg,"\"%s\" is a pointer of struct. (Use arrow \"->\" to refer to the members.)",tempKeyWord);
|
---|
239 | if(num==33) sprintf(msg,"Constant formula has a thing that is not literal value or constant value.");
|
---|
240 | if(num==34) sprintf(msg,"Constant formula must be defined in the module level.");
|
---|
241 | if(num==38) sprintf(msg,"\"%s\" is a procedure without a return value.",tempKeyWord);
|
---|
242 | if(num==39) sprintf(msg,"\"%s\" is not object pointer. \"->\" is invalid.",tempKeyWord);
|
---|
243 | if(num==40) lstrcpy(msg,"Cannot set a object to return value.");
|
---|
244 | if(num==41) lstrcpy(msg,"Init data is wrong.");
|
---|
245 | if(num==42) lstrcpy(msg,"The inaccurate characters are contained after the closing parenthesis \")\".");
|
---|
246 | if(num==43) lstrcpy(msg,"The inaccurate characters are contained after the double quote.");
|
---|
247 |
|
---|
248 | //オブジェクト関連
|
---|
249 | if(num==102) sprintf(msg,"\"%s\" The object is not defined.",tempKeyWord);
|
---|
250 | if(num==103) sprintf(msg,"\"%s\" The member is not defined.",tempKeyWord);
|
---|
251 | if(num==104) sprintf(msg,"\"%s\" The reference character is different.",tempKeyWord);
|
---|
252 | if(num==105) sprintf(msg,"\"%s\" An own class is not inheritable.",tempKeyWord);
|
---|
253 | if(num==106) sprintf(msg,"\"%s\" It class is not defined.",tempKeyWord);
|
---|
254 | if(num==107) sprintf(msg,"\"%s\" Cannot access the private member.",tempKeyWord);
|
---|
255 | if(num==108) sprintf(msg,"\"%s\" Cannot access the protected member.",tempKeyWord);
|
---|
256 | if(num==109) sprintf(msg,"\"%s\" Cannot call the private member.",tempKeyWord);
|
---|
257 | if(num==110) sprintf(msg,"\"%s\" Cannot call the protected member.",tempKeyWord);
|
---|
258 | if(num==111) lstrcpy(msg,"The Inherits phrase must be described to the 1st line of class module");
|
---|
259 | if(num==112) sprintf(msg,"\"%s\" is not class object. Therefor you cannot set the parameter for constructor.",tempKeyWord);
|
---|
260 | if(num==113) sprintf(msg,"\"%s\" The parameter for constructor is wrong.",tempKeyWord);
|
---|
261 | if(num==114) lstrcpy(msg,"Destructor cannot have a parameter.");
|
---|
262 | if(num==115) lstrcpy(msg,"Constructor and Destructor cannot have a return value.");
|
---|
263 | if(num==116) lstrcpy(msg,"Constructor and Destructor must be public access.");
|
---|
264 | if(num==117) lstrcpy(msg,"Destructors name must be \"~ClassName\".");
|
---|
265 | if(num==118) lstrcpy(msg,"Super class is not found.");
|
---|
266 | if(num==119) sprintf(msg,"\"%s\" The member is not defined in the super class.",tempKeyWord);
|
---|
267 |
|
---|
268 | //Enum関連
|
---|
269 | if(num==150) sprintf(msg,"\"%s\" The value is not set",tempKeyWord);
|
---|
270 | if(num==151) sprintf(msg,"\"%s\" is not found from enum lists.",tempKeyWord);
|
---|
271 |
|
---|
272 | //リンカ
|
---|
273 | if(num==200) sprintf(msg,"\"%s\" Unknown error.",tempKeyWord);
|
---|
274 | #endif
|
---|
275 |
|
---|
276 | return 1;
|
---|
277 | }
|
---|
278 | void SetError(int ErrorNum,const string &keyWord,int pos){
|
---|
279 | SetError( ErrorNum, keyWord.c_str(), pos );
|
---|
280 | }
|
---|
281 | void SetError(int num,const char *KeyWord,int pos){
|
---|
282 | extern HANDLE hHeap;
|
---|
283 | extern HWND hMainDlg;
|
---|
284 | extern ERRORINFO *pErrorInfo;
|
---|
285 | extern int ErrorNum;
|
---|
286 | char temporary[1024],temp2[1024],temp3[32],FileName[MAX_PATH];
|
---|
287 | BOOL bFirst;
|
---|
288 | int i2;
|
---|
289 |
|
---|
290 | extern BOOL bDebugRun;
|
---|
291 | if(bDebugRun) return;
|
---|
292 |
|
---|
293 | if(num!=-2){
|
---|
294 | //一般エラーまたは警告
|
---|
295 | i2=0; //ここにブレークポイントをおく
|
---|
296 |
|
---|
297 | if(num>-100){
|
---|
298 | //エラーのみ
|
---|
299 | i2=0;
|
---|
300 | }
|
---|
301 |
|
---|
302 | }
|
---|
303 |
|
---|
304 | if(!GetErrorMsg(num,KeyWord,temporary,pos)) return;
|
---|
305 |
|
---|
306 | if(ErrorNum==0){
|
---|
307 | SetDlgItemText(hMainDlg,IDC_ERRORLIST,"");
|
---|
308 | EnableWindow(GetDlgItem(hMainDlg,IDC_ERRORLIST),1);
|
---|
309 | bFirst=1;
|
---|
310 | }
|
---|
311 | else bFirst=0;
|
---|
312 |
|
---|
313 |
|
---|
314 | ////////////////////
|
---|
315 | // エラー情報を追加
|
---|
316 | pErrorInfo=(ERRORINFO *)HeapReAlloc(hHeap,0,pErrorInfo,(ErrorNum+1)*sizeof(ERRORINFO));
|
---|
317 |
|
---|
318 | if(pos==-1){
|
---|
319 | pErrorInfo[ErrorNum].FileName=0;
|
---|
320 | lstrcpy(temp2,temporary);
|
---|
321 | }
|
---|
322 | else{
|
---|
323 | GetLineNum(pos,&pErrorInfo[ErrorNum].line,FileName);
|
---|
324 |
|
---|
325 | pErrorInfo[ErrorNum].FileName=(char *)HeapAlloc(hHeap,0,lstrlen(FileName)+1);
|
---|
326 | lstrcpy(pErrorInfo[ErrorNum].FileName,FileName);
|
---|
327 |
|
---|
328 | _splitpath(pErrorInfo[ErrorNum].FileName,0,0,temp2,temp3);
|
---|
329 | lstrcat(temp2,temp3);
|
---|
330 |
|
---|
331 | if(pErrorInfo[ErrorNum].line==-1)
|
---|
332 | sprintf(temp2+lstrlen(temp2),"(no area) %s",temporary);
|
---|
333 | else
|
---|
334 | sprintf(temp2+lstrlen(temp2),"(%d) - %s",pErrorInfo[ErrorNum].line+1,temporary);
|
---|
335 | }
|
---|
336 |
|
---|
337 | i2=GetWindowTextLength(GetDlgItem(hMainDlg,IDC_ERRORLIST));
|
---|
338 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
339 | if(bFirst==0){
|
---|
340 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)"\r\n");
|
---|
341 | i2+=2;
|
---|
342 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
343 | }
|
---|
344 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)temp2);
|
---|
345 |
|
---|
346 |
|
---|
347 | if(num==-2){
|
---|
348 | //コンパイルメッセージ
|
---|
349 | //※何もしない
|
---|
350 | extern int CompileMsgNum;
|
---|
351 | CompileMsgNum++;
|
---|
352 | }
|
---|
353 | else{
|
---|
354 | if(num>-100){
|
---|
355 | //警告ではなく、エラーの場合はエラーチェックフラグを立てる
|
---|
356 | extern BOOL bError;
|
---|
357 | bError=1;
|
---|
358 |
|
---|
359 | // ログに出力
|
---|
360 | trace( "error - " << temp2 );
|
---|
361 | }
|
---|
362 | else{
|
---|
363 | extern int WarningNum;
|
---|
364 | WarningNum++;
|
---|
365 |
|
---|
366 | // ログに出力
|
---|
367 | trace( "warning - " << temp2 );
|
---|
368 | }
|
---|
369 | }
|
---|
370 |
|
---|
371 | ErrorNum++;
|
---|
372 | }
|
---|
373 | void SetError(){
|
---|
374 | SetError(300,NULL,cp);
|
---|
375 | }
|
---|
376 | void CompileMessage(char *buffer){
|
---|
377 | SetError(-2,buffer,-1);
|
---|
378 | }
|
---|
379 |
|
---|
380 | #define STRING_SYSTEM_DECLAREHANDLE "*_System_DeclareHandle_"
|
---|
381 | void DifferentTypeError(const int VarType,LONG_PTR VarIndex,const int CalcType,LONG_PTR CalcIndex,const int iWarning,const char *pszFuncName,const int ParmNum){
|
---|
382 | //////////////////////////
|
---|
383 | // キャストに関する警告
|
---|
384 | //////////////////////////
|
---|
385 | char temporary[255],temp2[255],temp3[255];
|
---|
386 |
|
---|
387 | if(IS_LITERAL(CalcIndex)) CalcIndex=-1;
|
---|
388 |
|
---|
389 | if(pszFuncName)
|
---|
390 | sprintf(temporary,"\"%s\"の第%dパラメータが、",pszFuncName,ParmNum+1);
|
---|
391 | else temporary[0]=0;
|
---|
392 |
|
---|
393 | if(!GetTypeName(VarType,VarIndex,temp2)) lstrcpy(temp2,"Any");
|
---|
394 | if(memcmp(temp2,STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0){
|
---|
395 | memmove(temp2,
|
---|
396 | temp2+lstrlen(STRING_SYSTEM_DECLAREHANDLE),
|
---|
397 | lstrlen(temp2+lstrlen(STRING_SYSTEM_DECLAREHANDLE))+1);
|
---|
398 | }
|
---|
399 | if(!GetTypeName(CalcType,CalcIndex,temp3)) lstrcpy(temp3,"Any");
|
---|
400 | if(memcmp(temp3,STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0){
|
---|
401 | memmove(temp3,
|
---|
402 | temp3+lstrlen(STRING_SYSTEM_DECLAREHANDLE),
|
---|
403 | lstrlen(temp3+lstrlen(STRING_SYSTEM_DECLAREHANDLE))+1);
|
---|
404 | }
|
---|
405 | sprintf(temporary+lstrlen(temporary),"%sから%s",temp3,temp2);
|
---|
406 |
|
---|
407 | extern int cp;
|
---|
408 | if(iWarning==1) SetError(-101,temporary,cp);
|
---|
409 | else if(iWarning==2) SetError(-102,temporary,cp);
|
---|
410 | else if(iWarning==3) SetError(50,temporary,cp);
|
---|
411 | }
|
---|
412 |
|
---|
413 | bool CheckDifferentType(const int VarType,const LONG_PTR lpVarIndex,int CalcType,const LONG_PTR lpCalcIndex,const char *pszFuncName,const int ParmNum){
|
---|
414 |
|
---|
415 | if(VarType==DEF_STRUCT||CalcType==DEF_STRUCT){
|
---|
416 | //いずれかが構造体場合
|
---|
417 | if( VarType != CalcType || lpVarIndex != lpCalcIndex ){
|
---|
418 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,3,pszFuncName,ParmNum);
|
---|
419 | return false;
|
---|
420 | }
|
---|
421 | }
|
---|
422 |
|
---|
423 | if(VarType==DEF_OBJECT||CalcType==DEF_OBJECT){
|
---|
424 | //いずれかがオブジェクトインスタンスの場合
|
---|
425 | if( VarType != CalcType ){
|
---|
426 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,3,pszFuncName,ParmNum);
|
---|
427 | return false;
|
---|
428 | }
|
---|
429 |
|
---|
430 | CClass *pClass = (CClass *)lpVarIndex;
|
---|
431 | if( !pClass->IsEqualsOrSubClass( (CClass *)lpCalcIndex ) ){
|
---|
432 | //等しくなく、派生クラスでもないとき
|
---|
433 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,3,pszFuncName,ParmNum);
|
---|
434 | return false;
|
---|
435 | }
|
---|
436 | }
|
---|
437 |
|
---|
438 | //#strictが指定されていないときは型チェックを行わないようにする
|
---|
439 | extern BOOL bStrict;
|
---|
440 | if(bStrict==0) return true;
|
---|
441 |
|
---|
442 | if(CalcType&FLAG_PTR){
|
---|
443 | //配列先頭フラグがたっている場合は、ポインタ型として扱う
|
---|
444 | CalcType=MAKE_PTR_TYPE(NATURAL_TYPE(CalcType),PTR_LEVEL(CalcType)+1);
|
---|
445 | }
|
---|
446 |
|
---|
447 | if(IsPtrType(VarType)||IsPtrType(CalcType)){
|
---|
448 | /* 右辺及び左辺のいずれかがポインタ型の場合は、
|
---|
449 | 型チェックを行う。
|
---|
450 | ・同一の種類のポインタ型以外はエラーとする */
|
---|
451 |
|
---|
452 | if(IsPtrType(VarType)&&lpCalcIndex==LITERAL_NULL){
|
---|
453 | //リテラルNULL値の場合
|
---|
454 | return true;
|
---|
455 | }
|
---|
456 |
|
---|
457 | if(VarType==DEF_PTR_VOID){
|
---|
458 | //左辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
459 | if(IsPtrType(CalcType)) return true;
|
---|
460 | }
|
---|
461 |
|
---|
462 | if(CalcType==DEF_PTR_VOID){
|
---|
463 | //右辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
464 | if(IsPtrType(VarType)) return true;
|
---|
465 | }
|
---|
466 |
|
---|
467 | if(VarType!=CalcType){
|
---|
468 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,2,pszFuncName,ParmNum);
|
---|
469 | return true;
|
---|
470 | }
|
---|
471 |
|
---|
472 | if(VarType==DEF_PTR_OBJECT){
|
---|
473 | //双方がオブジェクトポインタ型の場合
|
---|
474 | if(lpVarIndex!=lpCalcIndex){
|
---|
475 | const CClass *pobj_tempClass;
|
---|
476 | pobj_tempClass=(CClass *)lpCalcIndex;
|
---|
477 | while(pobj_tempClass&&(!IS_LITERAL((LONG_PTR)pobj_tempClass))){
|
---|
478 | pobj_tempClass=pobj_tempClass->pobj_InheritsClass;
|
---|
479 |
|
---|
480 | if(lpVarIndex==(LONG_PTR)pobj_tempClass){
|
---|
481 | //継承先が等しいとき
|
---|
482 | return true;
|
---|
483 | }
|
---|
484 | }
|
---|
485 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,2,pszFuncName,ParmNum);
|
---|
486 | return true;
|
---|
487 | }
|
---|
488 | }
|
---|
489 | }
|
---|
490 |
|
---|
491 | if(VarType==DEF_DOUBLE){
|
---|
492 | if(Is64Type(CalcType)){
|
---|
493 | //64ビット整数値の場合は警告を出す
|
---|
494 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
495 | }
|
---|
496 | }
|
---|
497 | else if(VarType==DEF_SINGLE){
|
---|
498 | if(Is64Type(CalcType)||CalcType==DEF_DOUBLE){
|
---|
499 | //64ビット整数値、またはDouble型の場合は警告を出す
|
---|
500 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
501 | }
|
---|
502 | }
|
---|
503 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(char)){
|
---|
504 | if(GetTypeSize(CalcType,lpCalcIndex)>sizeof(char)&&
|
---|
505 | lpCalcIndex!=LITERAL_NULL&&
|
---|
506 | lpCalcIndex!=LITERAL_M128_0&&
|
---|
507 | lpCalcIndex!=LITERAL_0_255){
|
---|
508 | //8ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
509 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
510 | }
|
---|
511 | }
|
---|
512 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(short)){
|
---|
513 | if(GetTypeSize(CalcType,lpCalcIndex)>sizeof(short)&&
|
---|
514 | lpCalcIndex!=LITERAL_NULL&&
|
---|
515 | lpCalcIndex!=LITERAL_M128_0&&
|
---|
516 | lpCalcIndex!=LITERAL_0_255&&
|
---|
517 | lpCalcIndex!=LITERAL_M32768_0&&
|
---|
518 | lpCalcIndex!=LITERAL_0_65535){
|
---|
519 | //16ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
520 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
521 | }
|
---|
522 | }
|
---|
523 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(long)){
|
---|
524 | if(IsRealNumberType(CalcType)||
|
---|
525 | (IsWholeNumberType(CalcType)&&
|
---|
526 | GetTypeSize(CalcType,lpCalcIndex)>sizeof(long)&&
|
---|
527 | lpCalcIndex!=LITERAL_NULL)
|
---|
528 | ){
|
---|
529 | /* 32ビット整数値より大きな型、または実数、
|
---|
530 | またはリテラル値でもない場合は警告を出す */
|
---|
531 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
532 | }
|
---|
533 | }
|
---|
534 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(_int64)){
|
---|
535 | if(IsRealNumberType(CalcType)){
|
---|
536 | //実数の場合は警告を出す
|
---|
537 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
538 | }
|
---|
539 | }
|
---|
540 |
|
---|
541 | return true;
|
---|
542 | }
|
---|
543 | bool CheckDifferentType( const Type &varType,const Type &calcType,const char *pszFuncName,const int ParmNum){
|
---|
544 | return CheckDifferentType(
|
---|
545 | varType.GetBasicType(),
|
---|
546 | varType.GetIndex(),
|
---|
547 | calcType.GetBasicType(),
|
---|
548 | calcType.GetIndex(),
|
---|
549 | pszFuncName,
|
---|
550 | ParmNum );
|
---|
551 | }
|
---|