aboutsummaryrefslogtreecommitdiffstats
path: root/music/pokeredmusicdisasm/Stop.cpp
diff options
context:
space:
mode:
authorKuroiIeWa5Da <tyuki@adu.me>2012-01-23 01:41:05 -0600
committerKuroiIeWa5Da <tyuki@adu.me>2012-01-23 01:41:05 -0600
commit4d0797bc3a6ae0ea4b44e8b6463339d662f5d669 (patch)
tree03b824a1bb511bbb8c57ea378c1d27ea04c27ef7 /music/pokeredmusicdisasm/Stop.cpp
parentFinished PkmnHealed music data - all 3 channels (diff)
downloadpokeyellow-4d0797bc3a6ae0ea4b44e8b6463339d662f5d669.tar.gz
pokeyellow-4d0797bc3a6ae0ea4b44e8b6463339d662f5d669.tar.xz
pokeyellow-4d0797bc3a6ae0ea4b44e8b6463339d662f5d669.zip
made changes in repo
hg-commit-id: 1145e088ee27
Diffstat (limited to 'music/pokeredmusicdisasm/Stop.cpp')
-rw-r--r--music/pokeredmusicdisasm/Stop.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/music/pokeredmusicdisasm/Stop.cpp b/music/pokeredmusicdisasm/Stop.cpp
new file mode 100644
index 00000000..c0a0a2ff
--- /dev/null
+++ b/music/pokeredmusicdisasm/Stop.cpp
@@ -0,0 +1,47 @@
+#include <sstream>
+#include "Stop.h"
+using namespace std;
+
+Stop::Stop()
+{}
+
+Stop::Stop(unsigned char* byte)
+{
+ Parse(byte);
+}
+
+bool Stop::IsValid(unsigned char* byte)
+{
+ if(byte[0] == 0xFF)
+ {
+ error = false; // Unblock assembling
+ return true;
+ }
+ else
+ {
+ error = true; // Block assembling
+ return false;
+ }
+}
+
+string Stop::GenAsm()
+{
+ string tmpRet = AbstractData::GenAsm();
+ if(tmpRet != "") return false;
+
+ stringstream tmpAsmOut;
+ tmpAsmOut << "mus_end";
+ return tmpAsmOut.str();
+}
+
+bool Stop::Parse(unsigned char* byte)
+{
+ if(AbstractData::Parse(byte)) return false;
+ return true;
+}
+
+unsigned int Stop::Arguments()
+{
+ // No Arguments
+ return 0;
+} \ No newline at end of file