[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
[182] | 3 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
---|
| 4 |
|
---|
[167] | 5 | #include <Program.h>
|
---|
[279] | 6 | #include <Compiler.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;
|
---|
[279] | 293 | char temporary[1024],temp2[1024],temp3[32];
|
---|
[4] | 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{
|
---|
[279] | 331 | std::string dummyStr;
|
---|
[280] | 332 | compiler.GetObjectModule().GetCurrentSource().GetLineInfo( pos, pErrorInfo[ErrorNum].line, dummyStr );
|
---|
[4] | 333 |
|
---|
[279] | 334 | pErrorInfo[ErrorNum].FileName=(char *)HeapAlloc(hHeap,0,lstrlen(dummyStr.c_str())+1);
|
---|
| 335 | lstrcpy(pErrorInfo[ErrorNum].FileName,dummyStr.c_str());
|
---|
[4] | 336 |
|
---|
| 337 | _splitpath(pErrorInfo[ErrorNum].FileName,0,0,temp2,temp3);
|
---|
| 338 | lstrcat(temp2,temp3);
|
---|
| 339 |
|
---|
| 340 | if(pErrorInfo[ErrorNum].line==-1)
|
---|
| 341 | sprintf(temp2+lstrlen(temp2),"(no area) %s",temporary);
|
---|
| 342 | else
|
---|
| 343 | sprintf(temp2+lstrlen(temp2),"(%d) - %s",pErrorInfo[ErrorNum].line+1,temporary);
|
---|
| 344 | }
|
---|
| 345 |
|
---|
| 346 | i2=GetWindowTextLength(GetDlgItem(hMainDlg,IDC_ERRORLIST));
|
---|
| 347 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
| 348 | if(bFirst==0){
|
---|
| 349 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)"\r\n");
|
---|
| 350 | i2+=2;
|
---|
| 351 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
| 352 | }
|
---|
| 353 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)temp2);
|
---|
| 354 |
|
---|
[140] | 355 |
|
---|
[4] | 356 | if(num==-2){
|
---|
| 357 | //コンパイルメッセージ
|
---|
| 358 | //※何もしない
|
---|
| 359 | extern int CompileMsgNum;
|
---|
| 360 | CompileMsgNum++;
|
---|
| 361 | }
|
---|
| 362 | else{
|
---|
| 363 | if(num>-100){
|
---|
| 364 | //警告ではなく、エラーの場合はエラーチェックフラグを立てる
|
---|
| 365 | extern BOOL bError;
|
---|
| 366 | bError=1;
|
---|
[140] | 367 |
|
---|
| 368 | // ログに出力
|
---|
| 369 | trace( "error - " << temp2 );
|
---|
[4] | 370 | }
|
---|
| 371 | else{
|
---|
| 372 | extern int WarningNum;
|
---|
| 373 | WarningNum++;
|
---|
[140] | 374 |
|
---|
| 375 | // ログに出力
|
---|
| 376 | trace( "warning - " << temp2 );
|
---|
[4] | 377 | }
|
---|
| 378 | }
|
---|
| 379 |
|
---|
| 380 | ErrorNum++;
|
---|
| 381 | }
|
---|
[64] | 382 | void SetError(){
|
---|
| 383 | SetError(300,NULL,cp);
|
---|
| 384 | }
|
---|
[287] | 385 | void CompileMessage(const char *buffer){
|
---|
[4] | 386 | SetError(-2,buffer,-1);
|
---|
| 387 | }
|
---|
| 388 |
|
---|
| 389 | #define STRING_SYSTEM_DECLAREHANDLE "*_System_DeclareHandle_"
|
---|
[290] | 390 | void DifferentTypeError( const Type &varType, const Type &calcFormalType, const int iWarning,const char *pszFuncName,const int ParmNum){
|
---|
[4] | 391 | //////////////////////////
|
---|
| 392 | // キャストに関する警告
|
---|
| 393 | //////////////////////////
|
---|
[290] | 394 | char temporary[255];
|
---|
| 395 | Type calcType( calcFormalType );
|
---|
[4] | 396 |
|
---|
[290] | 397 | if(IS_LITERAL(calcType.GetIndex()))
|
---|
| 398 | {
|
---|
| 399 | calcType.SetIndex( -1 );
|
---|
| 400 | }
|
---|
[4] | 401 |
|
---|
| 402 | if(pszFuncName)
|
---|
| 403 | sprintf(temporary,"\"%s\"の第%dパラメータが、",pszFuncName,ParmNum+1);
|
---|
| 404 | else temporary[0]=0;
|
---|
| 405 |
|
---|
[299] | 406 | std::string varTypeName = compiler.TypeToString( varType );
|
---|
[290] | 407 | if(memcmp( varTypeName.c_str(),STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0)
|
---|
| 408 | {
|
---|
| 409 | varTypeName = varTypeName.substr( lstrlen(STRING_SYSTEM_DECLAREHANDLE) );
|
---|
[4] | 410 | }
|
---|
[290] | 411 |
|
---|
[299] | 412 | std::string calcTypeName = compiler.TypeToString( calcType );
|
---|
[290] | 413 | if(memcmp( calcTypeName.c_str(),STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0)
|
---|
| 414 | {
|
---|
| 415 | calcTypeName = calcTypeName.substr( lstrlen(STRING_SYSTEM_DECLAREHANDLE) );
|
---|
[4] | 416 | }
|
---|
[290] | 417 | sprintf(temporary+lstrlen(temporary),"%sから%s",calcTypeName.c_str(),varTypeName.c_str());
|
---|
[4] | 418 |
|
---|
| 419 | extern int cp;
|
---|
| 420 | if(iWarning==1) SetError(-101,temporary,cp);
|
---|
| 421 | else if(iWarning==2) SetError(-102,temporary,cp);
|
---|
[45] | 422 | else if(iWarning==3) SetError(50,temporary,cp);
|
---|
[4] | 423 | }
|
---|
| 424 |
|
---|
[290] | 425 | bool CheckDifferentType( const Type &varType,const Type &calcFormalType,const char *pszFuncName,const int ParmNum)
|
---|
| 426 | {
|
---|
| 427 | Type calcType( calcFormalType );
|
---|
[4] | 428 |
|
---|
[290] | 429 | if( varType.IsStruct() || calcType.IsStruct() )
|
---|
| 430 | {
|
---|
[64] | 431 | //いずれかが構造体場合
|
---|
[290] | 432 | if( !varType.Equals( calcType ) )
|
---|
| 433 | {
|
---|
| 434 | DifferentTypeError( varType, calcType,3,pszFuncName,ParmNum);
|
---|
[64] | 435 | return false;
|
---|
| 436 | }
|
---|
| 437 | }
|
---|
| 438 |
|
---|
[290] | 439 | if( varType.IsObject() || calcType.IsObject() )
|
---|
| 440 | {
|
---|
| 441 | //いずれかがオブジェクトの場合
|
---|
| 442 | if( varType.GetBasicType() != calcType.GetBasicType() )
|
---|
| 443 | {
|
---|
| 444 | DifferentTypeError( varType, calcType,3,pszFuncName,ParmNum);
|
---|
[45] | 445 | return false;
|
---|
[4] | 446 | }
|
---|
[59] | 447 |
|
---|
[290] | 448 | if( !varType.GetClass().IsEqualsOrSubClass( &calcType.GetClass() ) )
|
---|
| 449 | {
|
---|
[59] | 450 | //等しくなく、派生クラスでもないとき
|
---|
[290] | 451 | DifferentTypeError( varType, calcType,3,pszFuncName,ParmNum);
|
---|
[59] | 452 | return false;
|
---|
| 453 | }
|
---|
[4] | 454 | }
|
---|
| 455 |
|
---|
| 456 | //#strictが指定されていないときは型チェックを行わないようにする
|
---|
| 457 | extern BOOL bStrict;
|
---|
[45] | 458 | if(bStrict==0) return true;
|
---|
[4] | 459 |
|
---|
[290] | 460 | if( calcType.GetBasicType() & FLAG_PTR )
|
---|
| 461 | {
|
---|
[4] | 462 | //配列先頭フラグがたっている場合は、ポインタ型として扱う
|
---|
[290] | 463 | calcType.SetBasicType( MAKE_PTR_TYPE(NATURAL_TYPE(calcType.GetBasicType()),PTR_LEVEL(calcType.GetBasicType())+1) );
|
---|
[4] | 464 | }
|
---|
| 465 |
|
---|
[290] | 466 | if( varType.IsPointer() || calcType.IsPointer() )
|
---|
| 467 | {
|
---|
[4] | 468 | /* 右辺及び左辺のいずれかがポインタ型の場合は、
|
---|
| 469 | 型チェックを行う。
|
---|
| 470 | ・同一の種類のポインタ型以外はエラーとする */
|
---|
| 471 |
|
---|
[290] | 472 | if( varType.IsPointer() && calcType.GetIndex() == LITERAL_NULL )
|
---|
| 473 | {
|
---|
[4] | 474 | //リテラルNULL値の場合
|
---|
[45] | 475 | return true;
|
---|
[4] | 476 | }
|
---|
| 477 |
|
---|
[290] | 478 | if( varType.IsVoidPtr() )
|
---|
| 479 | {
|
---|
[4] | 480 | //左辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
[290] | 481 | if( calcType.IsPointer() )
|
---|
| 482 | {
|
---|
| 483 | return true;
|
---|
| 484 | }
|
---|
[4] | 485 | }
|
---|
| 486 |
|
---|
[290] | 487 | if( calcType.IsVoidPtr() )
|
---|
| 488 | {
|
---|
[4] | 489 | //右辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
[290] | 490 | if( varType.IsPointer() )
|
---|
| 491 | {
|
---|
| 492 | return true;
|
---|
| 493 | }
|
---|
[4] | 494 | }
|
---|
| 495 |
|
---|
[290] | 496 | if( varType.GetBasicType() != calcType.GetBasicType() )
|
---|
| 497 | {
|
---|
| 498 | DifferentTypeError( varType, calcType, 2,pszFuncName,ParmNum);
|
---|
[45] | 499 | return true;
|
---|
[4] | 500 | }
|
---|
| 501 |
|
---|
[290] | 502 | if( varType.IsObjectPtr() )
|
---|
| 503 | {
|
---|
[4] | 504 | //双方がオブジェクトポインタ型の場合
|
---|
[290] | 505 | if( varType.GetIndex() != calcType.GetIndex() )
|
---|
| 506 | {
|
---|
| 507 | const CClass *pobj_tempClass = &calcType.GetClass();
|
---|
[4] | 508 | while(pobj_tempClass&&(!IS_LITERAL((LONG_PTR)pobj_tempClass))){
|
---|
[204] | 509 | pobj_tempClass=&pobj_tempClass->GetSuperClass();
|
---|
[4] | 510 |
|
---|
[290] | 511 | if( &varType.GetClass() == pobj_tempClass )
|
---|
| 512 | {
|
---|
[4] | 513 | //継承先が等しいとき
|
---|
[45] | 514 | return true;
|
---|
[4] | 515 | }
|
---|
| 516 | }
|
---|
[290] | 517 | DifferentTypeError( varType, calcType, 2,pszFuncName,ParmNum);
|
---|
[45] | 518 | return true;
|
---|
[4] | 519 | }
|
---|
| 520 | }
|
---|
| 521 | }
|
---|
| 522 |
|
---|
[290] | 523 | if( varType.IsDouble() )
|
---|
| 524 | {
|
---|
| 525 | if( calcType.Is64() )
|
---|
| 526 | {
|
---|
[4] | 527 | //64ビット整数値の場合は警告を出す
|
---|
[290] | 528 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 529 | }
|
---|
| 530 | }
|
---|
[290] | 531 | else if( varType.IsSingle() )
|
---|
| 532 | {
|
---|
| 533 | if( calcType.Is64() || calcType.IsDouble() )
|
---|
| 534 | {
|
---|
[4] | 535 | //64ビット整数値、またはDouble型の場合は警告を出す
|
---|
[290] | 536 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 537 | }
|
---|
| 538 | }
|
---|
[290] | 539 | else if( varType.GetSize() == sizeof(char) )
|
---|
| 540 | {
|
---|
| 541 | if( calcType.GetSize() > sizeof(char)
|
---|
| 542 | && calcType.GetIndex() != LITERAL_NULL
|
---|
| 543 | && calcType.GetIndex() != LITERAL_M128_0
|
---|
| 544 | && calcType.GetIndex() != LITERAL_0_255 )
|
---|
| 545 | {
|
---|
[4] | 546 | //8ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
[290] | 547 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 548 | }
|
---|
| 549 | }
|
---|
[290] | 550 | else if( varType.GetSize() == sizeof(short) )
|
---|
| 551 | {
|
---|
| 552 | if( calcType.GetSize() > sizeof(short)
|
---|
| 553 | && calcType.GetIndex() != LITERAL_NULL
|
---|
| 554 | && calcType.GetIndex() != LITERAL_M128_0
|
---|
| 555 | && calcType.GetIndex() != LITERAL_0_255
|
---|
| 556 | && calcType.GetIndex() != LITERAL_M32768_0
|
---|
| 557 | && calcType.GetIndex() != LITERAL_0_65535 )
|
---|
| 558 | {
|
---|
[4] | 559 | //16ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
[290] | 560 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 561 | }
|
---|
| 562 | }
|
---|
[290] | 563 | else if( varType.GetSize() == sizeof(long) )
|
---|
| 564 | {
|
---|
| 565 | if( calcType.IsReal()
|
---|
| 566 | || ( calcType.IsWhole() && calcType.GetSize() > sizeof(long) && calcType.GetIndex() != LITERAL_NULL ) )
|
---|
| 567 | {
|
---|
[4] | 568 | /* 32ビット整数値より大きな型、または実数、
|
---|
| 569 | またはリテラル値でもない場合は警告を出す */
|
---|
[290] | 570 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 571 | }
|
---|
| 572 | }
|
---|
[290] | 573 | else if( varType.GetSize() == sizeof(_int64) )
|
---|
| 574 | {
|
---|
| 575 | if( calcType.IsReal() )
|
---|
| 576 | {
|
---|
[4] | 577 | //実数の場合は警告を出す
|
---|
[290] | 578 | DifferentTypeError( varType, calcType, 1,pszFuncName,ParmNum);
|
---|
[4] | 579 | }
|
---|
| 580 | }
|
---|
[45] | 581 |
|
---|
| 582 | return true;
|
---|
[4] | 583 | }
|
---|