安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题









that's why I made configurable ID in tessaracts :D
you decide where it has to be transfered etc
this way it doesn't have to go into complexity calculating where to go and how
you set it "go to A" and it just sends max possible to A and waits
----
ignoring input/output would not make it easier actually
but surely then one plug would have to be nominated as overseer of other plugs, count up power between them and decide where to transfer it to
would be a pain if numerous plugs would be connected to cables from numerous directions -> where to send it further? to all directions? how much to send?
send max possible to first direction then max to next then max to next etc etc? then which order it should go?
what if at the end of direction is another plug with junction?
etc etc complexity grows and groows
what would happen if they ended up looping?
not really -> all this stuff would have to be done yourself -> at best it will be possible to copy "transfer energy" and "search adjescent" code from batteries + adjust them to new functionality, but everything else simply doesn't exist
iirc I have kept coordinates of tessaracts somewhere and I was just forcing the game to load their segments and as a result load machines and keep them loaded
game loads the player and CPH at start (there were numerous problems that climate control centre is not loaded by default -> I don't remember whether it was fixed or not)
from there it takes all lasers/conveyors and loads up everything connected (I don't remember every machine that had this loading effect tho)
basically if you build base "disconnected" from CPH then it won't be loaded on game restart
what I want to say -> the cables/plugs will need to copy this functionability to work properly ;d
I was wondering about the complexity of undertaking such an endeavor. Was hoping there was existing functions that could be easily leveraged,
yeh chat limit is a pain lol.
cables sorta are omni directional, bi-directional atleast, even in ac/dc a diode is required to prevent back flow but I digress, if you're unfamilliar with minecraft rf cables thats ok, im trying to think of another analog, I think the Pipez mod in MC might be a good example RF(electricity basically) can “flow” in any direction., Or the old Industrial Craft 2 cables, those are probably the best example.
modified “wired” Tesseract, I mean, maybe yah, that might emulate a power cable precisely,
battery, ptg, etc could be valid input, anything that can take power would be valid input including other batteries,. Not sure if separate blocks are strictly required, input/output ideally should be ambiguous much like a battery can receive or send power to adjacent blocks, even simultaneously, A non capacitive bridge of sorts,
So, no idea about that, surely sounds like a cancer to make such 3d models :D
"I mean more like omni directional transfer blocks"
but cables aren't omni directional :D
"Minecraft mod RF cables"
never heard of it
"In theory could have a "cable" and a "plug" plugs adjacent to valid blocks could pull, or push power and would trace cables for valid endpoints unless it can be done with a single block im not sure."
basically you want modified tessaracts from this mod but tessaracts are wireless and you want to add the wire connection between them (battery would be "input plug" while output would be "output plug")
-> cables would be pseudo-blocks (keep information about all connected plugs and don't tick)
-> if new cable is attached then looks for adjescent cables and tells them to inform all their connected plugs about new connection
-> now all plugs go ape ship validating all cables :V
(the same for placing cable next to plug -> inform plugs to validate cables)
^ there would have to be debounce mechanic, so when cables spam "validate everything" it doesn't do it as many times as cables who asked, but waits a bit until all cables ask to validate and then runs it once (maybe in the array of connections dedicate one plug that will validate and then inform all other plugs about result etc etc)
and it can check all other connected plugs by asking any of the adjescent cables
long story short, sounds like a pain in the butt to code, but possible :D
btw
I haven't been messing with mods for a while and don't plan to come back to it, so it would have to be someone else to make such mod