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

feat: support systems without System suffix #3649

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

vdrg
Copy link
Contributor

@vdrg vdrg commented Apr 1, 2025

TODO: add tests

@vdrg vdrg requested a review from alvrs as a code owner April 1, 2025 15:13
Copy link

changeset-bot bot commented Apr 1, 2025

🦋 Changeset detected

Latest commit: ab0ad91

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 30 packages
Name Type
@latticexyz/world Patch
@latticexyz/cli Patch
@latticexyz/dev-tools Patch
@latticexyz/entrykit Patch
@latticexyz/explorer Patch
@latticexyz/store-sync Patch
@latticexyz/world-consumer Patch
@latticexyz/world-module-callwithsignature Patch
@latticexyz/world-module-erc20 Patch
@latticexyz/world-module-metadata Patch
@latticexyz/world-modules Patch
@latticexyz/store-indexer Patch
@latticexyz/abi-ts Patch
@latticexyz/block-logs-stream Patch
@latticexyz/common Patch
@latticexyz/config Patch
create-mud Patch
@latticexyz/faucet Patch
@latticexyz/gas-report Patch
@latticexyz/paymaster Patch
@latticexyz/protocol-parser Patch
@latticexyz/react Patch
@latticexyz/recs Patch
@latticexyz/schema-type Patch
solhint-config-mud Patch
solhint-plugin-mud Patch
@latticexyz/stash Patch
@latticexyz/store Patch
@latticexyz/utils Patch
vite-plugin-mud Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@@ -22,10 +22,22 @@ export async function getSystemContracts({
pattern: path.join(config.sourceDirectory, "**"),
});

// Get systems from the top-level systems object
const topLevelSystems = Object.keys(config.systems);
Copy link
Member

Choose a reason for hiding this comment

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

no need for this! the top level config is also mirrored to the namespaces config (the default entry point for tooling)


// Get systems from namespaces
const namespaceSystems = Object.values(config.namespaces || {}).flatMap((namespace) =>
Object.keys(namespace.systems || {}),
Copy link
Member

Choose a reason for hiding this comment

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

ideally we map these to namespace.label rather than key to keep tooling consistent

Copy link
Contributor Author

Choose a reason for hiding this comment

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

now I'm doing: Object.values(namespace.systems).map((system) => system.label),, let me know if that is what you meant

Copy link
Member

Choose a reason for hiding this comment

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

sorry, the namespaces flatMap is the "standard" path for this kinda thing

return solidityFiles
.filter(
(file) =>
file.basename.endsWith("System") &&
// Include files with the System suffix and files defined in config
(file.basename.endsWith("System") || configSystemLabels.includes(file.basename)) &&
Copy link
Member

Choose a reason for hiding this comment

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

My only concern with this approach is if a system name provided by the MUD config conflicts with any other contract name (including codegen). I think I avoided filtering out codegen dirs here because how those dirs are determined is a bit complex (and somewhat dependent on the source dir structure).

Some other ideas on my mind:

  • config option for isSystemSource: () => bool where we'd provide this behavior by default but it could be added to or overridden
  • config option for systemSuffix: RegExp where the default is something like /System$/ but could be overridden to something like /(System|Program)$/

In an ideal world, we'd be able to parse the Solidity source and check if anything inherits from the base System contract and use that as an indicator, but I recall running into chicken-and-egg problems when I moved source parsing earlier in the stack, where a system may depend on table libs or world/system interfaces that don't exist yet.

Copy link
Member

Choose a reason for hiding this comment

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

Curious to hear @alvrs's thoughts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants