-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added lexer #18
Merged
Merged
added lexer #18
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closed
kurrrru
reviewed
Dec 13, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- 依存関係からして、mlx_init関係を呼び出すのは、read_fileが完了した後の方がいいと思う
- open, malloc, mlx_initとか、失敗したらエラーメッセージ出して終了する系の関数をwrapしたxopen, xmalloc, xmlx_initを用意してるから、使っていいよ。というかむしろ、mlx_initとかの前だったら、exitしたらリソースを解放してくれるから、積極的にx...を使いたいかも
- mlx_initとかは、ちゃんと解放してくれるかは分からないから、明示的に解放した方が良さそう
- readfile内のwhileループ終了時はnext_lineはNULLのはずだから、freeいらなそう
- handle_elements内の、
msg_exit("Invalid or error processing element in file\n");
の\n
は不要かも - handle_elements内、statusという変数なくてもいいかも
- init_data内で、dataはmallocしなくてもいいかも(すでにスタック領域にメモリ確保された状態だから)
- process_elementの実装見た感じ、ft_strcmpを今からでも作った方が分かりやすいような気がする
- read_fileやset_...の各関数も、返す値はマクロを使った方が分かりやすいと思う(0/1でも0/-1でもいいけどできるだけ統一した方がいい)
elements_len
みたいな関数を作った方がよいかも- 今の感じだと、
char *
の配列の長さはいくつが正しいのか、ぱっと見で分かりづらいかも
- 今の感じだと、
- parse_colorは0~255の値を扱う
- 255以下であることのチェックも必要かも?
- 数値以外の文字がないかのチェックはした方がいいかも
- 全部は見切れてないので明日みます
commit comment 1対応完了
未対応
|
kurrrru
reviewed
Dec 14, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
data.img.image = xmlx_new_image(data.mlx, 1000, 1000);
を追加したい- x...の関数、失敗したらexitする実装にしているから、NULLチェックしなくていいよ
- norm errorはlibft.hのプロトタイプ宣言のインデントがあっていない
- ft_lstnewのエラー処理がされていないかも
- src/wrapにxft_lstnewを作った方がいいかも
- 座標として-1が与えられることはあり得るため、-1のときエラーとするのは良くないかも
- splitした後の単語数が想定と違うなどの場合は、エラーメッセージを出してexitしてもいいかも
- 数値以外の文字があったときをエラーとするために、
convertible_to_float
という作った関数を使える - splitもxsplitあるよ
対応完了
イェーイ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
lexer(ファイルの情報をdataに保存する)を作った