modding:guide:replacing_content
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
modding:guide:replacing_content [2012/04/08 17:57] – created rpc | modding:guide:replacing_content [2014/12/27 04:40] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | Discuss this page on this page's [[Replacing Content Talk Page|Talk Page]]. | ||
+ | ==== Replacing Transcendence Content for Total n00bs ==== | ||
+ | |||
+ | This exercise has been brought to you by [[community: | ||
+ | |||
+ | === Step One: Pick something to change === | ||
+ | |||
+ | The first thing you need to do is get a hold of a human-readable version of the Transcendence content - in other words you want the source code. And that means you want [[modding: | ||
+ | |||
+ | Now the ' | ||
+ | |||
+ | So, for now, I'm just going to copy Tinkers.xml into another directory and rename it SmartTinkers.xml (please ignore any delusions of grandeur you may notice here ;-) ) | ||
+ | |||
+ | I'm also going to follow the traditional method of seeing how other people do it by looking at the [[http:// | ||
+ | |||
+ | Starting at the very top of our ' | ||
+ | |||
+ | <code xml><? | ||
+ | |||
+ | UTF-8? What's that? Well the good news is that 90+% of the users can forget about it. Look at the first line of CommonwealthFortressoverwrite.xml - it doesn' | ||
+ | |||
+ | <code xml><? | ||
+ | |||
+ | //You do want to support foreign languages?// | ||
+ | |||
+ | Next up - look down a few lines for the < | ||
+ | |||
+ | <code xml>< | ||
+ | |||
+ | The < | ||
+ | |||
+ | So the first few lines, and last line, of SmartTinkers.xml should be changed to look like this... | ||
+ | |||
+ | <code xml><? | ||
+ | < | ||
+ | [ | ||
+ | < | ||
+ | < | ||
+ | ]> | ||
+ | < | ||
+ | |||
+ | ... | ||
+ | |||
+ | <code xml></ | ||
+ | |||
+ | Put the SmartTinkers.xml file into your extensions directory and start Transcendence - if it doesn' | ||
+ | |||
+ | === Step Two: See the result of your work === | ||
+ | |||
+ | Now you've got an extension that exactly replicates what Transcendence already did, but did it work? If you're going to debug this it helps if you can actually find the station when you need it. So here is a little bit of code (adapted from the [[http:// | ||
+ | |||
+ | <code xml> | ||
+ | (setq smartTinkerME (lambda Nil | ||
+ | | ||
+ | )) | ||
+ | </ | ||
+ | |||
+ | I put that right at the start of the < | ||
+ | < | ||
+ | then press F9 while the game is running). | ||
+ | |||
+ | === Step Three: Actually do something useful === | ||
+ | |||
+ | Now we're getting to the tricky stuff. | ||
+ | |||
+ | * Author does not possess fancy code techniques. | ||
+ | |||
+ | In this case I want to fix two annoyances with the current tinker stations. 1) Being told that your pile of 20 Mining Lasers are crap they can't do anything with. 2) Using 19 lots of Ortho Steel Ore to make Ortho Steel when you only needed 10. Credit goes to the hapless citizens of the [[http:// | ||
+ | |||
+ | == Filtering a list to only include specific items. == | ||
+ | |||
+ | So, how to do this? Better still where to do this? The answer to the second question (as I was informed) is inside the [[modding: | ||
+ | |||
+ | <code xml> | ||
+ | | ||
+ | | ||
+ | /></ | ||
+ | in the first place. | ||
+ | |||
+ | <code xml> | ||
+ | | ||
+ | | ||
+ | > | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | For the 'how to do this' question I think we are looking at a job for [[modding: | ||
+ | |||
+ | I'm not to proud to admit that I failed to get this to work - the following code is from Alterecco who has been invaluable during this whole process. | ||
+ | |||
+ | <code lisp> | ||
+ | (block (found) | ||
+ | (enumWhile (objGetStaticData gSource ' | ||
+ | (if (eq (item work 0) (itmGetUNID itm)) (setq found True)) | ||
+ | ) | ||
+ | found | ||
+ | ) | ||
+ | )) | ||
+ | </ | ||
+ | |||
+ | You now only see the items that (potentially) can be converted at the Tinkers. | ||
+ | |||
+ | == Taking only the items you need == | ||
+ | |||
+ | This shouldn' | ||
+ | |||
+ | First off all - where is it that the items actually disappear? | ||
+ | |||
+ | <code lisp> | ||
+ | |||
+ | gMaxCount? Sounds a bit of an ominous naming choice to me. Let's look a little further back to when we decide to go ahead with the deal ... | ||
+ | |||
+ | <code lisp> | ||
+ | |||
+ | There' | ||
+ | |||
+ | We'll have to go back even further to see the heart of the matter. | ||
+ | |||
+ | <code lisp>(if (geq gMaxCount (item testWork 1)) | ||
+ | (block Nil | ||
+ | (setq gMatch testWork) | ||
+ | (setq gCount (divide gMaxCount (item testWork 1))) | ||
+ | (setq gCost (multiply gCount 50)) | ||
+ | ) | ||
+ | )</ | ||
+ | |||
+ | The problem is that it works out how many we can make (gCount), but not how many are needed to make that amount. | ||
+ | |||
+ | |||
+ | <code lisp>(if (geq gMaxCount (item testWork 1)) | ||
+ | (block Nil | ||
+ | (setq gMatch testWork) | ||
+ | (setq gCount (divide gMaxCount (item testWork 1))) | ||
+ | (setq gMaxUsable (multiply (item testWork 1) gCount)) | ||
+ | (setq gCost (multiply gCount 50)) | ||
+ | ) | ||
+ | )</ | ||
+ | |||
+ | Now replace gMaxCount with gMaxUsable in the two places mentioned earlier and we're done. | ||
+ | |||
+ | To make it easier to test whether it works or not I've added another bit of code to the < | ||
+ | |||
+ | <code xml> | ||
+ | (block Nil | ||
+ | (setq smartTinkerME (lambda Nil | ||
+ | (sysCreateStation & | ||
+ | )) | ||
+ | (setq oreME (lambda Nil | ||
+ | (objAddItem gPlayerShip (itmCreate & | ||
+ | )) | ||
+ | ) | ||
+ | </ | ||
+ | |||
+ | Who-hoo! | ||
+ | |||
+ | If you don't believe me you can download [[http:// | ||
+ | |||
+ | Return to [[modding: |