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