Skip to content
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

OBJ sinkの作成 ジオメトリ出力のみ #607

Merged
merged 8 commits into from
Jul 31, 2024
Merged

Conversation

satoshi7190
Copy link
Contributor

@satoshi7190 satoshi7190 commented Jul 25, 2024

Close #591

Description(変更内容)

  • CtyGMLからobjファイルを出力できるようにしました。
  • gltf sinkを参考に作成。出力時のファイル名はtypenameから決定されます。(例: bldg_Building.obj)
  • GUI側には反映していません。マテリアルの実装(obj: マテリアルの変換 #592)ができたら反映する予定です。

パフォーマンス検証

  • 新宿で検証

建物 3次メッシュ

13104_shinjuku-ku_city_2023_citygml_1_op/udx/bldg/53394525_bldg_6697_op.gml
変換処理:4秒
image
image

新宿の建物データすべて

13999_tokyo_mlit_2023_citygml_1_op/udx/bldg/*.gml
変換処理:32秒
image
image

竹芝の3次元メッシュ(533945)にふくむまれるデータすべて

(新宿だとトランスフォーマーでエラーがでたので、竹芝で検証)

cargo run -- "13104_shinjuku-ku_city_2023_citygml_1_op/udx/**/533945*.gml" --sink obj --output <output_path>

 ERROR nusamai > [Source]: Fatal error: ParseError(SchemaViolation("unexpected element: /core:CityModel/core:cityObjectMember/brid:Bridge/uro:bridDataQualityAttribute/uro:ConstructionDataQualityAttribute/uro:dataAcquisition"))

13999_tokyo_mlit_2023_citygml_1_op/udx/**/533936*.gml
変換処理:218秒
image

bldg_Building
image

brid_Bridge
image

dem_ReliefFeature
大きすぎて開けない

frn_CityFurniture
image

luse_LandUse
image

tran_Railway.obj
image

tran_Road
image

tran_Square
image

tran_Track
image

tun_Tunnel
image

urf_FirePreventionDistrict
image

urf_UseDistrict
image

urf_Zone
image

uro_OtherConstruction
image

uro_Waterway
image

veg_PlantCover
image

veg_SolitaryVegetationObject
image

wtr_WaterBody
image

DEM

13999_tokyo_mlit_2023_citygml_1_op/udx/dem/533945_dem_6697_lod3_op.gml
処理時間:15秒
image
image

Notes(連絡事項)

下記のコマンドでobjファイルが出力されるか確認

cargo run -- <input_path> --sink obj --output <output_path>

Copy link

coderabbitai bot commented Jul 25, 2024

Walkthrough

新しいObjSinkProviderが追加され、OBJファイル形式のデータ処理に対応しました。この変更により、nusamaiモジュールはファイルタイプに基づいて適切なデータシンクプロバイダーを選択できるようになり、システムの機能性が向上しました。また、並行処理を活用して3Dデータを効率的に処理・出力する機能も強化されています。

Changes

ファイルパス 変更概要
app/src-tauri/src/main.rs
nusamai/src/lib.rs
nusamai/src/sink/mod.rs
nusamai/src/sink/obj/mod.rs
ObjSinkProviderを追加し、OBJファイル形式のデータ処理に対応。select_sink_provider関数に"obj"ファイルタイプの処理を追加。BUILTIN_SINKSObjSinkProviderを追加。objモジュールを新規宣言し、ObjSinkProviderObjSinkの実装を追加。

Poem

ぴょんぴょん飛び跳ねて、
新しいシンクプロバイダー、嬉しいな!
OBJを抱えて、データを届け、
みんなで使おう、楽しい世界へ。
うさぎの心、ざわめいて、
変化を祝おう、さあ、行こう! 🐰✨


Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@satoshi7190 satoshi7190 changed the title objsinkの作成 ジオメトリ出力のみ OBJ sinkの作成 ジオメトリ出力のみ Jul 25, 2024
@satoshi7190 satoshi7190 self-assigned this Jul 25, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 944b234 and 0020fe6.

Files selected for processing (4)
  • app/src-tauri/src/main.rs (2 hunks)
  • nusamai/src/lib.rs (1 hunks)
  • nusamai/src/sink/mod.rs (1 hunks)
  • nusamai/src/sink/obj/mod.rs (1 hunks)
Additional comments not posted (11)
nusamai/src/lib.rs (1)

20-20: 新しいシンクプロバイダーの追加が確認されました。

ObjSinkProviderBUILTIN_SINKSに正しく追加されています。特に問題はありません。

nusamai/src/sink/mod.rs (1)

10-10: 新しいモジュール宣言の追加が確認されました。

objモジュールが正しく宣言されています。特に問題はありません。

app/src-tauri/src/main.rs (2)

18-18: 新しいインポート文の追加が確認されました。

ObjSinkProviderが正しくインポートされています。特に問題はありません。


127-127: 新しいファイルタイプハンドリングの追加が確認されました。

select_sink_provider関数にobjファイルタイプのハンドリングが正しく追加されています。特に問題はありません。

nusamai/src/sink/obj/mod.rs (7)

3-29: インポートの確認

インポートされているモジュールはすべて必要であり、冗長なインポートは見当たりません。


31-32: ObjSinkProviderの定義

ObjSinkProviderの定義は問題ありません。


74-77: ObjSinkの定義

ObjSinkの定義は問題ありません。


79-87: BoundingVolumeの定義

BoundingVolumeの定義は問題ありません。


113-119: Featureの定義

Featureの定義は問題ありません。


123-127: ClassFeaturesの定義

ClassFeaturesの定義は問題ありません。


33-72: DataSinkProviderの実装

DataSinkProviderの実装は問題ありません。

nusamai/src/sink/obj/mod.rs Outdated Show resolved Hide resolved
Copy link

codecov bot commented Jul 25, 2024

Codecov Report

Attention: Patch coverage is 2.50000% with 234 lines in your changes missing coverage. Please review.

Files Patch % Lines
nusamai/src/sink/obj/mod.rs 2.51% 233 Missing ⚠️
app/src-tauri/src/main.rs 0.00% 1 Missing ⚠️
Additional details and impacted files
Components Coverage Δ
GUI 0.00% <0.00%> (ø)
Backend 79.41% <2.51%> (-2.46%) ⬇️
Libraries 89.82% <ø> (-0.02%) ⬇️

📢 Thoughts on this report? Let us know!

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0020fe6 and 5123a59.

Files selected for processing (1)
  • nusamai/src/sink/obj/mod.rs (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • nusamai/src/sink/obj/mod.rs

@satoshi7190 satoshi7190 requested a review from ciscorn July 25, 2024 07:57
@satoshi7190 satoshi7190 marked this pull request as ready for review July 25, 2024 08:00
@nokonoko1203 nokonoko1203 requested review from nokonoko1203 and removed request for ciscorn July 26, 2024 07:34
@nokonoko1203 nokonoko1203 marked this pull request as draft July 29, 2024 03:51
@satoshi7190 satoshi7190 marked this pull request as ready for review July 30, 2024 02:11
global_bvol
};

let transform_matrix = {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nits: glTFのSinkでは書かれてなかったと思いますが、なんのために変換行列を計算しているのか、というコメントはあっても良いかもしれないですね。

feedback.ensure_not_canceled()?;

// Write to file
let file_path = {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fiy: マテリアル処理の場合は当然そうするだろうとは思っているのですが、OBJフォーマットに関する知識や具体的なファイル書き出し手法に関するコードはmod.rsに紛れ込ませたくありません。
多少は堅牢なプログラムにしたいので、gltf sinkのようにファイルを分ける、nusamai-objのように分離するなどを検討してください!
特別な構造体も必要になってくるだろうと思います!

Copy link
Collaborator

@nokonoko1203 nokonoko1203 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@satoshi7190 現状、ほぼglTF Sinkのコピーなので特に問題ないですが、マテリアル処理に向けてコメントしてますので確認お願いします!
LGTM!

@nokonoko1203 nokonoko1203 merged commit 2b9e53c into main Jul 31, 2024
8 of 9 checks passed
@nokonoko1203 nokonoko1203 deleted the feature/sink-obj branch July 31, 2024 02:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

obj: ジオメトリの変換
2 participants