Anne
02-19-2010, 03:55 PM
I have been working on writing a script that will put gems in jars that live in my locker.
I have very little training, formal or informal, in any kind of language. I've just decided to learn something new. I understand the .each method, I just can't seem to make it work in this case.
Any help would be appreciated.
Annelie
I'm have shortened this to deal with just two gems for brevity. I've also removed the sorting of the jars since that isn't an issue.
This script works fine if the gem at the top of the gemsack is the gem you're looking for. Otherwise, it will change #{gem} to the first gem that it finds that belongs to the array.
gemarray = [ "black opal", "rhodochrosite stone"]
result = dothis "get jar from my #{Lich.jarsack}", /^You remove/
if gem = /jar containing (.*?)s from/.match(result).captures.first
echo "#{gem}"
sackscan = dothistimeout "look in my sack", 5, /In the .*? you see/
contents = sackscan.scan(/\b(?:#{gemarray.join('|')})(?= and an? |,|\.)/)
echo "#{gem}"
end
if contents.include?(gem)
contents.each { |gem|
echo "#{gem}"
fput "get #{gem} from my sack"
fput "put #{gem} in my jar"
}
end
What I use currently is a convoluted script, and doesn't make good use of the power that is Ruby. It works, but I'd like to try and make it better.
fput "open locker"
fput "get #{Lich.jarsack}"
fput "wear my #{Lich.jarsack}"
loop{
result= dothis "get jar from my #{Lich.jarsack}", /^You remove|^Get what/
if result =~ /^Get what/
jar = ['jar']
result = dothistimeout "look in my cloak", 5, /In the .*? you see/
contents = result.scan(/\b(?:#{jar.join('|')})(?= and an? |,|\.)/)
contents.each { |jar|
fput "get jar from my cloak"
fput "put jar in my #{Lich.jarsack}"
}
fput "remove my #{Lich.jarsack}"
fput "put my #{Lich.jarsack} in locker"
exit
end
if gem = /jar containing (.*?)?s from/.match(result).captures.first
end
if gem =~/radiant opalescent thunderstone/
gem = "opalescent thunderstone"
end
if gem =~/swirling purple thunderstone/
gem ="purple thunderstone"
end
result = dothis "get my #{gem} from my #{Lich.gemsack}", /^You remove|^Get what/
if result =~ /^You remove/
result = dothis "put my #{gem} in my jar", /is full|to the contents of the glass jar, filling it.|to the contents of the glass jar./
if result =~/filling it/
fput "put my jar in locker"
end
if result =~/is full/
fput "put #{gem} in my cloak"
fput "put jar in locker"
end
if result =~/contents of the glass jar./
fput "put jar in my #{Lich.jarsack}"
end
end
if result =~ /^Get what/
fput "put jar in my cloak"
end
}
I have very little training, formal or informal, in any kind of language. I've just decided to learn something new. I understand the .each method, I just can't seem to make it work in this case.
Any help would be appreciated.
Annelie
I'm have shortened this to deal with just two gems for brevity. I've also removed the sorting of the jars since that isn't an issue.
This script works fine if the gem at the top of the gemsack is the gem you're looking for. Otherwise, it will change #{gem} to the first gem that it finds that belongs to the array.
gemarray = [ "black opal", "rhodochrosite stone"]
result = dothis "get jar from my #{Lich.jarsack}", /^You remove/
if gem = /jar containing (.*?)s from/.match(result).captures.first
echo "#{gem}"
sackscan = dothistimeout "look in my sack", 5, /In the .*? you see/
contents = sackscan.scan(/\b(?:#{gemarray.join('|')})(?= and an? |,|\.)/)
echo "#{gem}"
end
if contents.include?(gem)
contents.each { |gem|
echo "#{gem}"
fput "get #{gem} from my sack"
fput "put #{gem} in my jar"
}
end
What I use currently is a convoluted script, and doesn't make good use of the power that is Ruby. It works, but I'd like to try and make it better.
fput "open locker"
fput "get #{Lich.jarsack}"
fput "wear my #{Lich.jarsack}"
loop{
result= dothis "get jar from my #{Lich.jarsack}", /^You remove|^Get what/
if result =~ /^Get what/
jar = ['jar']
result = dothistimeout "look in my cloak", 5, /In the .*? you see/
contents = result.scan(/\b(?:#{jar.join('|')})(?= and an? |,|\.)/)
contents.each { |jar|
fput "get jar from my cloak"
fput "put jar in my #{Lich.jarsack}"
}
fput "remove my #{Lich.jarsack}"
fput "put my #{Lich.jarsack} in locker"
exit
end
if gem = /jar containing (.*?)?s from/.match(result).captures.first
end
if gem =~/radiant opalescent thunderstone/
gem = "opalescent thunderstone"
end
if gem =~/swirling purple thunderstone/
gem ="purple thunderstone"
end
result = dothis "get my #{gem} from my #{Lich.gemsack}", /^You remove|^Get what/
if result =~ /^You remove/
result = dothis "put my #{gem} in my jar", /is full|to the contents of the glass jar, filling it.|to the contents of the glass jar./
if result =~/filling it/
fput "put my jar in locker"
end
if result =~/is full/
fput "put #{gem} in my cloak"
fput "put jar in locker"
end
if result =~/contents of the glass jar./
fput "put jar in my #{Lich.jarsack}"
end
end
if result =~ /^Get what/
fput "put jar in my cloak"
end
}