• 0

how do i write this in pseudocode?


Question

i understand this is not vb or c++ or anything, i used a program called python and its pretty simple to understand if someone could help me write it in pseudocode that would be awesome thankyou.

#version 0.0.5

class Game:

# Initialises variables

def __init__(self):

self._exit = False

# Array of known commands

self._commands = {

'go': self._go,

'quit': self._quit,

"look" : self._look}

# Array of go sub commands, used by _go

self._commands_go = {"north": self._go_north,

"south" : self._go_south,

"east" : self._go_east,

"west" : self._go_west,

"up" : self._go_up,

"down" : self._go_down}

# Method for parsing command, if it gets "comamnd" returns ("command",None)

@staticmethod

def parse_command(string):

index = string.find(' ')

if index < 0:

return (string, None)

return (string[:index], string[index+1:])

# This is main method; the only one which should be called from outside

# It will just read data from input in never ending loop and parse commands

def run(self):

while not self._exit:

src = input('> ')

(command,args) = Game.parse_command( src)

# Do we have this command, execute it

if command in self._commands:

self._commands[command](args)

else:

print("huh?")

#######################################################

############## All game commands go here ##############

#######################################################

def _quit(self,args):

self._exit = True

print("OK ... but a small part of you may never leave until you have personally saved Muirfieland from the clutches of evil .. Bwahahahahahah (sinister laugh)")

def _look(self,args):

print("You see nothing but endless void stretching off in all directions")

# movement handling, will get executed when user types 'go ...' and '...' will be in arg

def _go(self,args):

if args is None:

print("please tell me more",)

return False

# splits sub command and arguments

(command,args) = Game.parse_command(args)

if command not in self._commands_go:

print( "Sorry, I'm afraid I can't do that !")

return False

self._commands_go[command](args)

return True

# directions

def _go_north(self, args):

print("You wander of in the direction of north")

def _go_south(self, args):

print("You wander of in the direction of south")

def _go_east(self, args):

print("You wander of in the direction of east")

def _go_west(self, args):

print("You wander of in the direction of west")

def _go_up(self, args):

print("You wander of in the direction of up")

def _go_down(self, args):

print("You wander of in the direction of down")

#runs the game

game = Game()

game.run()

Link to comment
https://www.neowin.net/forum/topic/1149082-how-do-i-write-this-in-pseudocode/
Share on other sites

15 answers to this question

Recommended Posts

  • 0

If you understand the code that you have pasted then there should be no need for us to write the pseudocode for you. As a general rule in development, the pseudocode comes before the real code in an attempt to keep you focused. If you understand the code above then you can just break down what it does in to simple English.

  • Like 2
  • 0

strange question, I agree with Intrinsica. To write it in pseudocode you just have to describe what it does in normal english without elaborating too much. It's not like there is an accepted standard for pseudocode, because that would make it code ;)

  • 0
  On 26/04/2013 at 07:26, Intrinsica said:

If you understand the code that you have pasted then there should be no need for us to write the pseudocode for you. As a general rule in development, the pseudocode comes before the real code in an attempt to keep you focused. If you understand the code above then you can just break down what it does in to simple English.

no its not my homework...

i agree with what your saying but ive already written out the code..

just a few questions, do define something in pseudocode do you "dim" it in pseudocode?

heres what ive got so far.


class game
dim _init_(self):
self._exit = false
self._command = { "go" : self._go, "quit" : self._quit, "look" : self._look}
self._commands_go = {"north" : self._go_north, "south" : self._go_south, "east" : self._go_east, "west" : self._go_west, "up" : self._go_up, "down" : self._go_down}
@staticmethod
dim parser(string):
index = string. find (" ")
if index < 0 then
return (string, none)
end if
return (string(:index), string(index+1:))
dim run(self):
while not self._exit:
src = input("> "
(command,args) = game.parse_command(src)

if command in self._commands then
self._commands[command](args)
else:
print("huh?")
end if
dim_quit(self,args):
self._exit = true
print("OK ... but a small part of you may never leave until you have personally saved Muirfieland from the clutches of evil .. Bwahahahahahah (sinister laugh)")
dim _look(self,args):
print("You see nothing but endless void stretching off in all directions")
dim_go(self,args):
if args is none then
print("please tell me more")
return false
end if
(command,args) = game.parse_command(args)
if command not in self._commands_go then
print("Sorry, I'm afraid I can't do that !")
return false
end if
self._commands_go[command](args)
return true
dim _go_north(self, args):
print("You wander of in the direction of north")
dim _go_south(self, args):
print("You wander of in the direction of south")
dim_go_east(self, args):
print("You wander of in the direction of east")
dim_go_west(self, args):
print("You wander of in the direction of west")
dim_go_up(self, args):
print("You wander of in the direction of up")
dim_go_down(self, args):
print("You wander of in the direction of down")
game = game()
game.run()

[/CODE]

  • 0

Ok, a fair start. But here's the thing: I try to think of pseudocode like when I'm trying to explain to an end user what I'm doing and they don't understand computers. It's sort of in between actual code and pure English.

For example:

Request value for int from user
if int &gt; 5
goto [step 2]
else
goto [step 3]

[step 2] = say "Hello"

[step 3] = say "Leave me alone"

From that you can understand what is happening in the code without having to be a programmer. Note that the above example isn't the best in the world, but hopefully it helps to get the idea across.

  • 0
  On 26/04/2013 at 09:16, Intrinsica said:

Ok, a fair start. But here's the thing: I try to think of pseudocode like when I'm trying to explain to an end user what I'm doing and they don't understand computers. It's sort of in between actual code and pure English.

For example:

Request value for int from user
if int &gt; 5
goto [step 2]
else
goto [step 3]

[step 2] = say "Hello"

[step 3] = say "Leave me alone"

From that you can understand what is happening in the code without having to be a programmer. Note that the above example isn't the best in the world, but hopefully it helps to get the idea across.

i understand what you're saying, but I'm defining and using classes, not if statements

  • 0
  On 26/04/2013 at 10:22, jacobace said:
i understand what you're saying, but I'm defining and using classes, not if statements

You're right, but I'm also not going to write out your pseudocode for you. ;)

At the top of your code you set your commands and sub-commands.

Next it looks like you're waiting for the user to input a command.

Once the input has been given, the program jumps to the necessary location to execute the result.

The above is more English than it is pseudocode, and you would also want to provide more detail about each of the commands on the last section.

There's no need to think in classes and arrays for pseudocode (at least, in my mind). The whole point of pseudocode is that it is a way for anyone to understand what the program is doing at each step, almost like the commenting that you already added in the code itself.

  • 0

Pseudocode is usually used so non-programmers can understand what a piece of code does, or to express to a programmer what his/her code should do, without actually knowing any programming language.

Your 'pseudocode' looks like you just replaced 'def' with 'dim', and 'if... :' with 'if...then'.

Ask yourself this; would a non-programmer even know what 'dim' is?

You say your code is a class and some functions. I say it could very easily be expressed in a series of if statements.


Get user input
If input 1st word = "go" then
If input 2nd word = "north" then
print "wandering north"
else if input 2nd word = "south" then
print "wandering south"
...
end 2nd word check
else if input 1st word = "look"
print "you see nothing"
...
end 1st word check
[/CODE]

I'm sure if you give that to your mom, she'd probably grasp what the code is trying to do.

  • 0
  On 26/04/2013 at 11:50, GreenMartian said:

Pseudocode is usually used so non-programmers can understand what a piece of code does, or to express to a programmer what his/her code should do, without actually knowing any programming language.

Your 'pseudocode' looks like you just replaced 'def' with 'dim', and 'if... :' with 'if...then'.

Ask yourself this; would a non-programmer even know what 'dim' is?

You say your code is a class and some functions. I say it could very easily be expressed in a series of if statements.


Get user input
If input 1st word = "go" then
If input 2nd word = "north" then
print "wandering north"
else if input 2nd word = "south" then
print "wandering south"
...
end 2nd word check
else if input 1st word = "look"
print "you see nothing"
...
end 1st word check
[/CODE]

I'm sure if you give that to your mom, she'd probably grasp what the code is trying to do.

oh ok, i always through pseudocode was mean for "non programmers" to understand YOUR code, not how it works

  On 26/04/2013 at 11:08, saltysaltybk said:

This is homework- my school sniffer is in full force.

im just doing purely a out of my own curiosity, yes im in year 12 software design and development, and i need to know pseudocode but my skills arent exactly very good, so i got an existing program which was a project and im using that as an example.

  • 0
  On 26/04/2013 at 12:09, jacobace said:

oh ok, i always through pseudocode was mean for "non programmers" to understand YOUR code, not how it works

Well, pseudocode doesn't really have a rigid definition. You can do whatever you like, depending on the target audience.

If you're trying to explain a program you just wrote to your mom, then you probably want to express it in REALLY simple terms as I did above.

If you're trying to explain the code to a fellow programmer unfamiliar to Python, you could probably use some jargons from a language that he understands, and simplify the code (e.g. don't even bother including the 'self' argument. It doesn't contribute to what the code does).

It's a bit like public speaking; know your audience, and how much to 'dumb it down' so they understand what you're talking about.

  • 0
  On 26/04/2013 at 12:22, GreenMartian said:
Well, pseudocode doesn't really have a rigid definition. You can do whatever you like, depending on the target audience.
I wish they had told us that in university back when they started asking for programs in "pseudocode"... Everyone was so confused as to what to write exactly!
  • 0
  On 26/04/2013 at 13:21, Asik said:

I wish they had told us that in university back when they started asking for programs in "pseudocode"... Everyone was so confused as to what to write exactly!

thats exactly how i feel!!,like we went over pseudocode in class, but everyone has there weaknesses and unfortunatly pseudocode is mine, and i suppose the "form" of pseudocode we learned was different because i cant find that 'form' on the internet or anything. which is why im asking people for help.

  On 26/04/2013 at 13:21, Asik said:

I wish they had told us that in university back when they started asking for programs in "pseudocode"... Everyone was so confused as to what to write exactly!

i mostly dont learn software from websites and help, i learn from examples and i see how they do it and pick up techniques/theory from that

  • 0

It's just whatever you want it to be really. I feel most comfortable coding in Java, so my psuedocode basically looks like Java but leaves out a lot of the more complicated stuff (less strict with type safety, leaving out ; in places, ...).

Psuedocode should just be readable, and you should be able to create real code from psuedocode so it shouldn't be too concise. Just enough to make people understand what it does no matter what language they code in.

This topic is now closed to further replies.
  • Posts

    • This is an example of why it is so difficult to have a conversation with conservatives - they refuse to operate in good faith. You say "Those are not rights. Those were special treatments that were taken away that non-trans whatever didn't get." Which means you either failed to read any of the links I provided or you are lying. The very first link is about how the U.S. Military is firing trans people out of the military because they are trans and denying them retirement benefits. What other groups does the military treat this way that would support your assertion that they had been treated as special previously? Does the miliary routinely fire large numbers of its members and deny them retirement and was heretofore not doing that to trans people? I fail to see the logic in your argument.
    • Dell's Tower Plus Windows 11 desktop brings good all round performance at a big discount by Paul Hill Are you looking for a powerful tower desktop PC? If so, Dell’s Tower Plus EBT2250 is available for $1,099.99 right now, discounted down 25% from its typical price of $1,460.64, making it its lowest price in 30 days, and indeed, of all time (purchase link towards the bottom of the article). It’s powered by an Intel Core Ultra 7 265 processor and an NVIDIA GeForce RTX 4060 GPU. It also features an NPU which achieves 13 TOPs, but it is not a Copilot+ PC which demand 40 TOPs. Nonetheless, Dell also claimed a 26% performance boost in multi-core applications compared to the previous generation XPS Desktop. It also comes with a 1TB NVMe SSD for speedy boots and app launches and there is 1x 16GB DDR5-5200 RAM which should help to cut through all of your tasks, though, it may not be enough for very demanding tasks. Dell has made this tower PC with upgrades in mind with available memory, storage, and expansion slots. It also features a new thermal design with 120mm fan, and the company claims this makes it up to 22% quieter while maintaining cooling performance. Here's more about the expansion options: The system supports dual 4K monitors through an HDMI 2.0 port and a Thunderbolt 4 Type-C port. It also has a built-in media card reader for quick import of RAW images. Another nice feature with this tower is that it’s equipped with Wi-Fi 7, which promises “4.8x faster throughput, lower latency and greater capacity” for seamless online experiences. This Dell comes with Windows 11 Home and 6-months of Dell Migrate to help users move files and settings to their new computer. If you are interested in this deal, check out the buying link below. Dell Tower Plus EBT2250: $1,099.99 (Amazon US) / MSRP $1,460.64 This Amazon deal is US-specific and not available in other regions unless specified. If you don't like it or want to look at more options, check out the Amazon US deals page here. Get Prime (SNAP), Prime Video, Audible Plus or Kindle / Music Unlimited. Free for 30 days. As an Amazon Associate, we earn from qualifying purchases.
    • The first stars in the universe may have been much smaller than we thought, new research hints — possibly explaining why it's so hard to find evidence they ever existed. According to the new research, the earliest generation of stars had a difficult history. These stars came to be in a violent environment: inside a huge gas cloud whipping with supersonic-speed turbulence at velocities five times the speed of sound (as measured in Earth's atmosphere). A simulation underpinning the new research also showed gases clustering into lumps and bumps that appeared to herald a coming starbirth. The cloud broke apart, creating pieces from which clusters of stars seemed poised to emerge. One gas cloud eventually settled into the right conditions to form a star eight times the mass of our sun — much smaller than the 100-solar-mass behemoths researchers previously imagined in our early universe. "With the presence of supersonic turbulence, the cloud becomes fragmented into multiple smaller clumps, leading to the formation of several less massive stars instead," principal researcher Ke-Jung Chen, a research fellow at the Academia Sinica Institute of Astronomy and Astrophysics in Taiwan https://www.livescience.com/space/astronomy/scientists-may-finally-know-why-the-first-stars-in-the-universe-left-no-trace  
  • Recent Achievements

    • One Month Later
      Jaclidio hoy earned a badge
      One Month Later
    • Week One Done
      Yawdee earned a badge
      Week One Done
    • Week One Done
      eugwalker earned a badge
      Week One Done
    • First Post
      Ben Gross earned a badge
      First Post
    • One Month Later
      chiptuning earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      640
    2. 2
      +FloatingFatMan
      183
    3. 3
      ATLien_0
      146
    4. 4
      Xenon
      123
    5. 5
      wakjak
      107
  • Tell a friend

    Love Neowin? Tell a friend!