AkroMentos
AkroMentos
Explore posts from servers
DHDistant Horizons
Created by AkroMentos on 5/8/2024 in #help-me
Create mod compatibility
No description
23 replies
DHDistant Horizons
Created by AkroMentos on 5/8/2024 in #help-me
Create mod compatibility
I'll update the discord server when I find the time to test them
23 replies
DHDistant Horizons
Created by AkroMentos on 5/8/2024 in #help-me
Create mod compatibility
I haven't encountered any issues yet I'm just gathering info still 🙂 thanks for the pointers I'll check with the 2.1 RC I think it'll be a pretty fast troubleshooting it either works or doesn't Create is a single mod and if any dependency of Create might be conflicting there is nothing to do anyways without breaking Create
23 replies
DHDistant Horizons
Created by AkroMentos on 5/8/2024 in #help-me
Create mod compatibility
Yes sorry maybe I wasn't clear enough, by
know there is a known issue with Create: Dreams and Desires
I was referring to the outlined part of the faq you posted 🙂 Create: Dreams and Desires is a modpack and 'Create' is the standalone mod. My question specifically targets the latest release of 'Create' The Mod as I'm looking to host a modded server around the Distant Horizons and the Create mod.
23 replies
DHDistant Horizons
Created by AkroMentos on 5/8/2024 in #help-me
Create mod compatibility
Thank you for linking the faq channel, which part of that are you referring to exactly?
23 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
that way I'm still not married to grpc.tools
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
it doesn't have to be, I have a code generator for other purposes where I already do my own .proto -> .desc -> c# code, I can just hook into that and generate these mappings from a config file as well
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
good point, but will have to look out for name collisions
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
so you'd still see the generated type in the protobuf but that can be implicitly converted to the desired domain type
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
that or just simply
public static implicit operator Generated.Protobuf.Vector3(System.Numerics.Vector3 val)
public static implicit operator Generated.Protobuf.Vector3(System.Numerics.Vector3 val)
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
protobuf generates partial classes so I can also generate implicit conversions "into" the proto classes
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
ooo that's clever, like generate the converters as well
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
then it's either some msbuild step of source generators that do the magic
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
<Protobuf Include="../../proto/common/*.proto" ProtoRoot="../../proto" />
<Protobuf Include="../../proto/common/*.proto" ProtoRoot="../../proto" />
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
at the end of the day that mapping has to be defined somewhere
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
I do that already for other stuff, and I would do it here as well. My main issue is that I have no idea how a solution could look like
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
hm, interesting approach, unfortunately I get the proto files so I have to use that as source
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
sorry, I thought you had something specific in mind when you said
it's entirely possible, but I have no idea if Grpc.Tools supports anything like that
it came across that you are also using protobuf and know of a library or tool that supports what I need or have solved this issue otherwise
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
if it has the featureset that I need... I'm not married to grpc.tools...
70 replies
CC#
Created by AkroMentos on 10/6/2023 in #help
❔ Mapping common primitive types with protobuf & grpc
I mean.. it's open source I can fork / rewrite do anything, I can also switch over to what you're using
70 replies